From c790b9a8a5c7a22c40fc1bd885e150a1f6f24146 Mon Sep 17 00:00:00 2001 From: hochan Lee Date: Fri, 28 May 2021 20:24:27 +0900 Subject: [FIX] Content bug (#744), Primitive (#746) * [FIX] Content bug (#744), Primitive * Found wrongtranslate 'Grammar and types' (#779) oog ->log Co-authored-by: xcxcxz <75213468+xcxcxz@users.noreply.github.com> --- files/ko/web/javascript/guide/grammar_and_types/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files/ko/web/javascript/guide') 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; -- cgit v1.2.3-54-g00ecf