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/promiserejectionevent/promise | |
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/promiserejectionevent/promise')
-rw-r--r-- | files/ja/web/api/promiserejectionevent/promise/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ja/web/api/promiserejectionevent/promise/index.html b/files/ja/web/api/promiserejectionevent/promise/index.html index ae55501f0d..64cf00fcd8 100644 --- a/files/ja/web/api/promiserejectionevent/promise/index.html +++ b/files/ja/web/api/promiserejectionevent/promise/index.html @@ -15,7 +15,7 @@ translation_of: Web/API/PromiseRejectionEvent/promise --- <div>{{APIRef("HTML DOM") }}</div> -<div>{{domxref("PromiseRejectionEvent")}}インターフェイスの読み取り専用プロパティである <code><strong>promise</strong></code> は、拒絶された JavaScript の {{jsxref("Promise")}} を表します。promise が拒絶された理由は、イベントの {{domxref("PromiseRejectionEvent.reason")}} プロパティを検査することでわかります。</div> +<div>{{domxref("PromiseRejectionEvent")}}インターフェイスの読み取り専用プロパティである <code><strong>promise</strong></code> は、拒否された JavaScript の {{jsxref("Promise")}} を表します。promise が拒否された理由は、イベントの {{domxref("PromiseRejectionEvent.reason")}} プロパティを検査することでわかります。</div> <h2 id="Syntax" name="Syntax">構文</h2> @@ -23,7 +23,7 @@ translation_of: Web/API/PromiseRejectionEvent/promise <h3 id="Value" name="Value">値</h3> -<p>reject(拒絶) されて、処理されていない JavaScript の{{jsxref("Promise")}}。</p> +<p>reject(拒否) されて、処理されていない JavaScript の{{jsxref("Promise")}}。</p> <h2 id="Examples" name="Examples">例</h2> |