aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/javascript/memory_management
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-09-16 23:57:54 +0900
committerGitHub <noreply@github.com>2021-09-16 23:57:54 +0900
commitd9247fba6815cc11d44e0c7c59c69157c830c467 (patch)
tree7abc2a636b4b639d57e1ff601de1adebec6c14c3 /files/ja/web/javascript/memory_management
parente921a9c17cc7c93b3418de230602d8e0dd20041b (diff)
downloadtranslated-content-d9247fba6815cc11d44e0c7c59c69157c830c467.tar.gz
translated-content-d9247fba6815cc11d44e0c7c59c69157c830c467.tar.bz2
translated-content-d9247fba6815cc11d44e0c7c59c69157c830c467.zip
Web/JavaScript 以下の文書内のリンクURLを正規化 (#2354)
- /en-US へのリンクを /ja へのリンクに修正 - /ja が付いていないものに /ja を付加 - MDN内のリンクが完全URLの場合、 /ja/docs からのURLに修正
Diffstat (limited to 'files/ja/web/javascript/memory_management')
-rw-r--r--files/ja/web/javascript/memory_management/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ja/web/javascript/memory_management/index.html b/files/ja/web/javascript/memory_management/index.html
index f5544285c1..4a655b8c26 100644
--- a/files/ja/web/javascript/memory_management/index.html
+++ b/files/ja/web/javascript/memory_management/index.html
@@ -90,7 +90,7 @@ var a3 = a.concat(a2);
<h3 id="References" name="References">リファレンス</h3>
-<p>ガベージコレクションアルゴリズムが依存している主な概念は、リファレンス (reference)の概念です。メモリー管理の文脈では、あるオブジェクトが別のオブジェクトに (明示的にであれ、暗黙的にであれ) アクセスできるとき、前者が後者を"参照している"と言います。例えば、JavaScript オブジェクトは自身の <a href="/docs/Web/JavaScript/Guide/Inheritance_and_the_prototype_chain">prototype</a> (暗黙的な参照) とプロパティ値 (明示的な参照) への参照を持ちます。</p>
+<p>ガベージコレクションアルゴリズムが依存している主な概念は、リファレンス (reference)の概念です。メモリー管理の文脈では、あるオブジェクトが別のオブジェクトに (明示的にであれ、暗黙的にであれ) アクセスできるとき、前者が後者を"参照している"と言います。例えば、JavaScript オブジェクトは自身の <a href="/ja/docs/Web/JavaScript/Guide/Inheritance_and_the_prototype_chain">prototype</a> (暗黙的な参照) とプロパティ値 (明示的な参照) への参照を持ちます。</p>
<p>ここでは、"オブジェクト"の概念は通常の JavaScript オブジェクトよりも広い概念として用いられており、また、関数のスコープ (もしくは、グローバルレキシカルスコープ) を含みます。</p>
@@ -183,5 +183,5 @@ window.onload = function(){
<ul>
<li><a class="external" href="http://www.ibm.com/developerworks/web/library/wa-memleak/">IBM article on "Memory leak patterns in JavaScript" (2007)</a></li>
<li><a class="external" href="http://msdn.microsoft.com/en-us/magazine/ff728624.aspx">Kangax article on how to register event handler and avoid memory leaks (2010)</a></li>
- <li><a href="/docs/Mozilla/Performance" title="/docs/Mozilla/Performance">Performance</a></li>
+ <li><a href="/ja/docs/Mozilla/Performance" title="/docs/Mozilla/Performance">Performance</a></li>
</ul>