diff options
author | hochan Lee <hochan049@gmail.com> | 2021-06-14 15:06:50 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-14 15:06:50 +0900 |
commit | 38906b2d3451508d1b5fb55952d7ba1566d2c2a1 (patch) | |
tree | 592464677fd8bdd7d294b348dcc6f691200ab908 /files/ko | |
parent | 14023581030a22f3f48242f77ca8e7daef182dc9 (diff) | |
download | translated-content-38906b2d3451508d1b5fb55952d7ba1566d2c2a1.tar.gz translated-content-38906b2d3451508d1b5fb55952d7ba1566d2c2a1.tar.bz2 translated-content-38906b2d3451508d1b5fb55952d7ba1566d2c2a1.zip |
fix: modify code format (#1172)
some code's align is incorrect on korean language page
Diffstat (limited to 'files/ko')
-rw-r--r-- | files/ko/web/javascript/reference/operators/this/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/web/javascript/reference/operators/this/index.html b/files/ko/web/javascript/reference/operators/this/index.html index 8a2807a5d8..bc27366762 100644 --- a/files/ko/web/javascript/reference/operators/this/index.html +++ b/files/ko/web/javascript/reference/operators/this/index.html @@ -80,7 +80,7 @@ f2() === undefined; // true <p><strong>예시 1</strong></p> -<pre class="brush: js notranslate" dir="rtl">// call 또는 apply의 첫 번째 인자로 객체가 전달될 수 있으며 this가 그 객체에 묶임 +<pre class="brush:js">// call 또는 apply의 첫 번째 인자로 객체가 전달될 수 있으며 this가 그 객체에 묶임 var obj = {a: 'Custom'}; // 변수를 선언하고 변수에 프로퍼티로 전역 window를 할당 |