aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyukai <d_hirayama@rapid.ocn.ne.jp>2021-10-04 13:27:33 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2021-10-05 02:15:41 +0900
commitab3f30268333825e6a8ee36b803948e77616d6c9 (patch)
tree86b4b8cd5b54723dd4305e0164925f6b8db5a53f
parent8c36e204f463590ab86811d65f206053555f0e07 (diff)
downloadtranslated-content-ab3f30268333825e6a8ee36b803948e77616d6c9.tar.gz
translated-content-ab3f30268333825e6a8ee36b803948e77616d6c9.tar.bz2
translated-content-ab3f30268333825e6a8ee36b803948e77616d6c9.zip
コードブロック中の&gt;を `>`に変更
-rw-r--r--files/ja/web/javascript/reference/global_objects/promise/index.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/javascript/reference/global_objects/promise/index.md b/files/ja/web/javascript/reference/global_objects/promise/index.md
index 821495840f..7ae6beb868 100644
--- a/files/ja/web/javascript/reference/global_objects/promise/index.md
+++ b/files/ja/web/javascript/reference/global_objects/promise/index.md
@@ -112,7 +112,7 @@ const promiseA = new Promise( (resolutionFunc,rejectionFunc) => {
resolutionFunc(777);
});
// この時点で、 "promiseA" はすでに解決されています。
-promiseA.then( (val) =&gt; console.log("asynchronous logging has val:",val) );
+promiseA.then( (val) => console.log("asynchronous logging has val:",val) );
console.log("immediate logging");
// 以下の順序で出力が行われます。