aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/javascript/reference/errors/not_a_codepoint
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-06-25 01:17:20 +0900
committerGitHub <noreply@github.com>2021-06-25 01:17:20 +0900
commit9b965a794d8e500fc0414f234f451a0c6b464984 (patch)
treec0b7985200f9d14396ad6eae3aea6ca1b33a8777 /files/ja/web/javascript/reference/errors/not_a_codepoint
parent74c650c03c337ff0868bd860b886c3af8befb743 (diff)
downloadtranslated-content-9b965a794d8e500fc0414f234f451a0c6b464984.tar.gz
translated-content-9b965a794d8e500fc0414f234f451a0c6b464984.tar.bz2
translated-content-9b965a794d8e500fc0414f234f451a0c6b464984.zip
Web/JavaScript/Reference/Errors/N* を更新 (#1202)
* Web/JavaScript/Reference/Errors/N* を更新 2021/06/14 時点の英語版に同期 * 追加修正
Diffstat (limited to 'files/ja/web/javascript/reference/errors/not_a_codepoint')
-rw-r--r--files/ja/web/javascript/reference/errors/not_a_codepoint/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ja/web/javascript/reference/errors/not_a_codepoint/index.html b/files/ja/web/javascript/reference/errors/not_a_codepoint/index.html
index 8bc1d11a3f..489619f6ea 100644
--- a/files/ja/web/javascript/reference/errors/not_a_codepoint/index.html
+++ b/files/ja/web/javascript/reference/errors/not_a_codepoint/index.html
@@ -18,11 +18,11 @@ translation_of: Web/JavaScript/Reference/Errors/Not_a_codepoint
RangeError: Invalid code point {0} (Chromium)
</pre>
-<h2 id="Error_type">エラー種別</h2>
+<h2 id="Error_type">エラーの種類</h2>
<p>{{jsxref("RangeError")}}</p>
-<h2 id="What_went_wrong">原因</h2>
+<h2 id="What_went_wrong">エラーの原因</h2>
<p>{{jsxref("String.fromCodePoint()")}} は、 {{jsxref("NaN")}} 値、負の整数 (-1)、 整数以外 (5.4)、 0x10FFFF より大きい数 (1114111) が渡されるとこのエラーを発生します。</p>
@@ -39,7 +39,7 @@ String.fromCodePoint(3.14); // RangeError
String.fromCodePoint(3e-2); // RangeError
String.fromCodePoint(NaN); // RangeError</pre>
-<h3 id="Valid_cases">有効なケース</h3>
+<h3 id="Valid_cases">有効な場合</h3>
<pre class="brush: js example-good">String.fromCodePoint(42); // "*"
String.fromCodePoint(65, 90); // "AZ"