aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/window/rejectionhandled_event/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/window/rejectionhandled_event/index.html')
-rw-r--r--files/ja/web/api/window/rejectionhandled_event/index.html4
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 =&gt; {
console.log("Promise rejected; reason: " + event.reason);