aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/javascript/reference/errors/cyclic_object_value
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-06-25 01:21:55 +0900
committerGitHub <noreply@github.com>2021-06-25 01:21:55 +0900
commit8b81fb4997863dfc0e81fd3751e26a0a620b1548 (patch)
tree919c66477889558b7bb60cc2370c184b9cffa87a /files/ja/web/javascript/reference/errors/cyclic_object_value
parent9b965a794d8e500fc0414f234f451a0c6b464984 (diff)
downloadtranslated-content-8b81fb4997863dfc0e81fd3751e26a0a620b1548.tar.gz
translated-content-8b81fb4997863dfc0e81fd3751e26a0a620b1548.tar.bz2
translated-content-8b81fb4997863dfc0e81fd3751e26a0a620b1548.zip
Web/JavaScript/Reference/Errors 以下の見出しの表記を統一 (#1203)
Diffstat (limited to 'files/ja/web/javascript/reference/errors/cyclic_object_value')
-rw-r--r--files/ja/web/javascript/reference/errors/cyclic_object_value/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ja/web/javascript/reference/errors/cyclic_object_value/index.html b/files/ja/web/javascript/reference/errors/cyclic_object_value/index.html
index 0731056c8f..b3914e2646 100644
--- a/files/ja/web/javascript/reference/errors/cyclic_object_value/index.html
+++ b/files/ja/web/javascript/reference/errors/cyclic_object_value/index.html
@@ -19,11 +19,11 @@ TypeError: Converting circular structure to JSON (Chrome and Opera)
TypeError: Circular reference in value argument not supported (Edge)
</pre>
-<h2 id="Error_type" name="Error_type">エラー種別</h2>
+<h2 id="Error_type">エラーの種類</h2>
<p>{{jsxref("TypeError")}}</p>
-<h2 id="What_went_wrong" name="What_went_wrong">エラーの原因</h2>
+<h2 id="What_went_wrong">エラーの原因</h2>
<p><a href="https://www.json.org/">JSON 形式</a>はオブジェクト参照に対応していません (<a href="http://tools.ietf.org/html/draft-pbryan-zyp-json-ref-03">IETF の草案はありますが</a>)。したがって {{jsxref("JSON.stringify()")}} はこれを解決しようとせず、これによって失敗します。</p>