✏️ Docs: fix typo

This commit is contained in:
Cell
2022-01-13 21:09:55 +08:00
parent 177487cd91
commit 1d4e434bfc
+2 -2
View File
@@ -9,7 +9,7 @@ const CustomJS = new (function () {
* @returns {CustomJS}
*/
this.hello = () => {
console.log('hello CustomJS!');
console.log('Hello CustomJS!');
return this;
}
/**
@@ -30,6 +30,6 @@ const CustomJS = new (function () {
CustomJS.init();
// It will be executed when the DOM tree is built.
document.addEventListener('DOMContentLoaded', () => {
console.log('DOMContentLoaded!')
console.log('DOM content loaded!')
});
})();