diff options
author | r-yanyo <honma.ryosuke@gmail.com> | 2021-05-17 00:52:24 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-17 00:52:24 +0900 |
commit | 7eb64c889af57451bcf27bcfd31135ea32061df4 (patch) | |
tree | e528a06e0ac3038aa48a2c75dd91d04e5b254652 /files | |
parent | a820784fab5d9682cb43297e23891a120c5b9d82 (diff) | |
download | translated-content-7eb64c889af57451bcf27bcfd31135ea32061df4.tar.gz translated-content-7eb64c889af57451bcf27bcfd31135ea32061df4.tar.bz2 translated-content-7eb64c889af57451bcf27bcfd31135ea32061df4.zip |
[Fix] delete dir="rtl" (#836)
Diffstat (limited to 'files')
-rw-r--r-- | files/ja/web/javascript/reference/operators/this/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/javascript/reference/operators/this/index.html b/files/ja/web/javascript/reference/operators/this/index.html index 25f4f68a40..9ab71e7180 100644 --- a/files/ja/web/javascript/reference/operators/this/index.html +++ b/files/ja/web/javascript/reference/operators/this/index.html @@ -135,7 +135,7 @@ new Bad(); // 参照エラー</pre> <h3 id="関数コンテキスト内の_this">関数コンテキスト内の this</h3> -<pre class="brush:js notranslate" dir="rtl">// オブジェクトを call や apply の最初の引数として渡すと、this がそれに結び付けられます +<pre class="brush:js notranslate">// オブジェクトを call や apply の最初の引数として渡すと、this がそれに結び付けられます var obj = {a: 'Custom'}; // このプロパティはグローバルオブジェクトに設定されます |