aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/javascript/guide/functions/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/javascript/guide/functions/index.html')
-rw-r--r--files/ja/web/javascript/guide/functions/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/javascript/guide/functions/index.html b/files/ja/web/javascript/guide/functions/index.html
index c63d481d0c..ffc6ad9752 100644
--- a/files/ja/web/javascript/guide/functions/index.html
+++ b/files/ja/web/javascript/guide/functions/index.html
@@ -59,7 +59,7 @@ y = mycar.make; // y は "Toyota" という値になる
<h3 id="Function_expressions">関数式</h3>
-<p>ここまでの関数宣言はすべて構文的な文でしたが、関数は<a href="/en-US/docs/Web/JavaScript/Reference/Operators/function">関数式</a>によって作成することもできます。</p>
+<p>ここまでの関数宣言はすべて構文的な文でしたが、関数は<a href="/ja/docs/Web/JavaScript/Reference/Operators/function">関数式</a>によって作成することもできます。</p>
<p>このような関数は<strong>無名</strong> (anonymous) にすることができます。名前をつけなくてもよいのです。例えば、関数 <code>square</code> は次のように定義することができます。</p>