aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web
diff options
context:
space:
mode:
authorsejinjja <sejinjja@naver.com>2021-12-12 23:48:42 +0900
committerGitHub <noreply@github.com>2021-12-12 23:48:42 +0900
commit27b5298d26a12b2ee7f5729aabf4b710cd1779dc (patch)
treeeacfb378c197c360e91c91e93f6ed6534f1b1d0a /files/ko/web
parent0ecd1aa8483d4d626e5c844548da2c84d0323b98 (diff)
downloadtranslated-content-27b5298d26a12b2ee7f5729aabf4b710cd1779dc.tar.gz
translated-content-27b5298d26a12b2ee7f5729aabf4b710cd1779dc.tar.bz2
translated-content-27b5298d26a12b2ee7f5729aabf4b710cd1779dc.zip
rid dir="rtl" from sampleCode (#3219)
* rid dir="rtl" from sampleCode * Update files/ko/web/javascript/reference/global_objects/string/repeat/index.html Co-authored-by: Yeji Choi <61399588+yechoi42@users.noreply.github.com>
Diffstat (limited to 'files/ko/web')
-rw-r--r--files/ko/web/javascript/reference/global_objects/string/repeat/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/web/javascript/reference/global_objects/string/repeat/index.html b/files/ko/web/javascript/reference/global_objects/string/repeat/index.html
index dfea5e722d..9f05562a1f 100644
--- a/files/ko/web/javascript/reference/global_objects/string/repeat/index.html
+++ b/files/ko/web/javascript/reference/global_objects/string/repeat/index.html
@@ -46,7 +46,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/String/repeat
<p><code>repeat</code>은 ECMAScript 2015 명세에 추가됐습니다. 따라서 어떤 표준 구현체에서는 사용할 수 없을 수도 있습니다. 그러나 아래 코드를 포함하면 지원하지 않는 플랫폼에서도 <code>repeat</code>을 사용할 수 있습니다.</p>
-<pre dir="rtl"><code>if (!String.prototype.repeat) {
+<pre class="brush: js"><code>if (!String.prototype.repeat) {
String.prototype.repeat = function(count) {
'use strict';
if (this == null) {