aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWintus <6386129+Wintus@users.noreply.github.com>2021-10-22 02:39:42 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2021-10-22 16:01:13 +0900
commita6215eb58ec44bc82558950f5036b6bd3bea605a (patch)
tree3a4954ddffd35b5a6961c895b8ebb8f3d16c48ad
parentc921a6c565ddc6f3eef7054903e2566e99fcc414 (diff)
downloadtranslated-content-a6215eb58ec44bc82558950f5036b6bd3bea605a.tar.gz
translated-content-a6215eb58ec44bc82558950f5036b6bd3bea605a.tar.bz2
translated-content-a6215eb58ec44bc82558950f5036b6bd3bea605a.zip
fix typo in Japanese
-rw-r--r--files/ja/web/javascript/reference/functions/arguments/callee/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/javascript/reference/functions/arguments/callee/index.html b/files/ja/web/javascript/reference/functions/arguments/callee/index.html
index 57ce3fcab0..ab85d00187 100644
--- a/files/ja/web/javascript/reference/functions/arguments/callee/index.html
+++ b/files/ja/web/javascript/reference/functions/arguments/callee/index.html
@@ -47,7 +47,7 @@ translation_of: Web/JavaScript/Reference/Functions/arguments/callee
return !(n &gt; 1) ? 1 : arguments.callee(n - 1) * n;
});</pre>
-<p>しかし、これは実際には本当に悪い解決法でした。これは (他の <code>arguments</code>、<code>callee</code>、<code>caller</code> の問題と組み合わさって)、一般的ば場合に、インライン化と末尾再帰が不可能になるからです (特定のケースではトレースなどを通じて実現できますが、最高のコードでも、不要な検査が入るために最適ではありません)。他の大きな問題として、再帰呼び出しにおいては <code>this</code> の値が別のものになるというものがあります。例を示します。</p>
+<p>しかし、これは実際には本当に悪い解決法でした。これは (他の <code>arguments</code>、<code>callee</code>、<code>caller</code> の問題と組み合わさって)、一般的な場合に、インライン化と末尾再帰が不可能になるからです (特定のケースではトレースなどを通じて実現できますが、最高のコードでも、不要な検査が入るために最適ではありません)。他の大きな問題として、再帰呼び出しにおいては <code>this</code> の値が別のものになるというものがあります。例を示します。</p>
<pre class="brush: js">var global = this;