diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-09-04 23:27:51 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-04 23:27:51 +0900 |
commit | 1f84b4a68d62235e1e642b9688b11263cf2b8141 (patch) | |
tree | d9880fa0e026bac7196ffa81b16219437b634235 /files/ja/web/api/window | |
parent | 8a5f76c0dad2243e05c89998a8d23f6edaeb7df4 (diff) | |
download | translated-content-1f84b4a68d62235e1e642b9688b11263cf2b8141.tar.gz translated-content-1f84b4a68d62235e1e642b9688b11263cf2b8141.tar.bz2 translated-content-1f84b4a68d62235e1e642b9688b11263cf2b8141.zip |
プロミスの rejet(ed) の訳語を「拒否」に統一 (#2252)
- Googleなどの検索件数に基づくと、「拒絶」よりも「拒否」の方が使用例が多いとみられるため。
Diffstat (limited to 'files/ja/web/api/window')
-rw-r--r-- | files/ja/web/api/window/rejectionhandled_event/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ja/web/api/window/rejectionhandled_event/index.html b/files/ja/web/api/window/rejectionhandled_event/index.html index 335d40fcdb..75eccd8a77 100644 --- a/files/ja/web/api/window/rejectionhandled_event/index.html +++ b/files/ja/web/api/window/rejectionhandled_event/index.html @@ -19,7 +19,7 @@ translation_of: Web/API/Window/rejectionhandled_event --- <div>{{APIRef("HTML DOM")}}</div> -<p><span class="seoSummary"><strong><code>rejectionhandled</code></strong> イベントは、 JavaScript の {{jsxref("Promise")}} が拒絶されたものの、その後で Promise の拒絶が処理された場合にスクリプトのグローバルスコープ (ふつうは {{domxref("window")}} だが {{domxref("Worker")}} の場合もある) に送られます。</span>これは、 Promise が拒絶されたが拒絶の手助けがないときに送信される {{domxref("Window.unhandledrejection_event", "unhandledrejection")}} イベントと並行して、デバッグや一般的なアプリケーションの回復に使用できます。</p> +<p><span class="seoSummary"><strong><code>rejectionhandled</code></strong> イベントは、 JavaScript の {{jsxref("Promise")}} が拒否されたものの、その後で Promise の拒否が処理された場合にスクリプトのグローバルスコープ (ふつうは {{domxref("window")}} だが {{domxref("Worker")}} の場合もある) に送られます。</span>これは、 Promise が拒否されたが拒否の手助けがないときに送信される {{domxref("Window.unhandledrejection_event", "unhandledrejection")}} イベントと並行して、デバッグや一般的なアプリケーションの回復に使用できます。</p> <table class="properties"> <tbody> @@ -44,7 +44,7 @@ translation_of: Web/API/Window/rejectionhandled_event <h2 id="Example" name="Example">例</h2> -<p><code>rejectionhandled</code> イベントを使用して、拒絶された Promise を、拒絶された理由を添えてコンソールに出力することができます。</p> +<p><code>rejectionhandled</code> イベントを使用して、拒否された Promise を、拒否された理由を添えてコンソールに出力することができます。</p> <pre class="brush: js">window.addEventListener("rejectionhandled", event => { console.log("Promise rejected; reason: " + event.reason); |