aboutsummaryrefslogtreecommitdiff
path: root/files/ja/learn
diff options
context:
space:
mode:
authortakada <68691468+T-unity@users.noreply.github.com>2021-05-15 11:42:52 +0900
committerGitHub <noreply@github.com>2021-05-15 11:42:52 +0900
commita6f692c8146ed1973250520e4c649201b15ff7b7 (patch)
tree0689b62f1497d07d1eb9532d37aab87abe7a8eb9 /files/ja/learn
parent880322adfe668a56ce932782b9b0878c4a833199 (diff)
downloadtranslated-content-a6f692c8146ed1973250520e4c649201b15ff7b7.tar.gz
translated-content-a6f692c8146ed1973250520e4c649201b15ff7b7.tar.bz2
translated-content-a6f692c8146ed1973250520e4c649201b15ff7b7.zip
I found a spelling error. (#808)
Thanks for the great article. I have found one spelling mistake in this article. In this context, "て" is more appropriate than "た".
Diffstat (limited to 'files/ja/learn')
-rw-r--r--files/ja/learn/javascript/objects/object-oriented_js/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/learn/javascript/objects/object-oriented_js/index.html b/files/ja/learn/javascript/objects/object-oriented_js/index.html
index ab99282acb..50ced468d5 100644
--- a/files/ja/learn/javascript/objects/object-oriented_js/index.html
+++ b/files/ja/learn/javascript/objects/object-oriented_js/index.html
@@ -76,7 +76,7 @@ translation_of: Learn/JavaScript/Objects/Object-oriented_JS
<p>JavaScript では、オブジェクトやその機能を定義し初期化するために<strong>コンストラクター関数</strong>と呼ばれる特殊な関数を使用します。これは便利です。なぜならオブジェクトをいくつ作成することになるか分からない状況に出くわすでしょうから。コンストラクターは必要な数のオブジェクトを効率的な方法で作成し、必要に応じてデータや関数を付加する手段を提供します。</p>
-<p>JavaScript でコンストラクターを通じてクラスを作り、そこからオブジェクトのインスタンスを生成するところを見ていきましょう。まずは、最初のオブジェクトの記事で見た <a href="https://github.com/mdn/learning-area/blob/master/javascript/oojs/introduction/oojs.html">oojs.html</a> ファイルの新しいコピーを、ローカルに作成したおいてください。</p>
+<p>JavaScript でコンストラクターを通じてクラスを作り、そこからオブジェクトのインスタンスを生成するところを見ていきましょう。まずは、最初のオブジェクトの記事で見た <a href="https://github.com/mdn/learning-area/blob/master/javascript/oojs/introduction/oojs.html">oojs.html</a> ファイルの新しいコピーを、ローカルに作成しておいてください。</p>
<h3 id="A_simple_example" name="A_simple_example">シンプルな例</h3>