From 1d4e434bfcbc56bccf422bb5eb246c0456732d59 Mon Sep 17 00:00:00 2001 From: Cell <1024@lruihao.cn> Date: Thu, 13 Jan 2022 21:09:55 +0800 Subject: [PATCH] :pencil2: Docs: fix typo --- assets/js/_custom.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/js/_custom.js b/assets/js/_custom.js index 52116550..1d403e80 100644 --- a/assets/js/_custom.js +++ b/assets/js/_custom.js @@ -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!') }); })();