diff options
author | hochan Lee <hochan049@gmail.com> | 2021-05-28 20:24:27 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-28 20:24:27 +0900 |
commit | c790b9a8a5c7a22c40fc1bd885e150a1f6f24146 (patch) | |
tree | b036b1ccce7efa28245bdc44e5b38151706c4368 /files/ko/glossary | |
parent | ad47d9ebc1b1552917df86a1391aaa6144d21862 (diff) | |
download | translated-content-c790b9a8a5c7a22c40fc1bd885e150a1f6f24146.tar.gz translated-content-c790b9a8a5c7a22c40fc1bd885e150a1f6f24146.tar.bz2 translated-content-c790b9a8a5c7a22c40fc1bd885e150a1f6f24146.zip |
[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>
Diffstat (limited to 'files/ko/glossary')
-rw-r--r-- | files/ko/glossary/primitive/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/glossary/primitive/index.html b/files/ko/glossary/primitive/index.html index 8f12b18da8..15d919722e 100644 --- a/files/ko/glossary/primitive/index.html +++ b/files/ko/glossary/primitive/index.html @@ -19,7 +19,7 @@ translation_of: Glossary/Primitive <h3 id="JavaScript">JavaScript</h3> -<pre class="brush: js line-numbers language-js notranslate" dir="rtl">// 문자열 메서드는 문자열을 변형하지 않음 +<pre class="brush: js">// 문자열 메서드는 문자열을 변형하지 않음 var bar = "baz"; console.log(bar); // baz bar.toUpperCase(); |