aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript/guide
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/javascript/guide')
-rw-r--r--files/ko/web/javascript/guide/grammar_and_types/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/web/javascript/guide/grammar_and_types/index.html b/files/ko/web/javascript/guide/grammar_and_types/index.html
index 54d51091a9..d8d2287599 100644
--- a/files/ko/web/javascript/guide/grammar_and_types/index.html
+++ b/files/ko/web/javascript/guide/grammar_and_types/index.html
@@ -99,7 +99,7 @@ console.log("c 값은 " + c); // ReferenceError 예외 던짐
let x;
console.log('x 값은 ' + x); // x 값은 undefined
-console.oog('y 값은 ' + y); // ReferenceError 예외 던짐
+console.log('y 값은 ' + y); // ReferenceError 예외 던짐
let y;
</pre>