Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ja]
Promise.prototype.finally()
メソッド内の文章を修正
英語版、および実際の動作に従い、「拒否」を「履行」に修正した。 ```markdown `Promise.reject(3).then(() => {}, () => 88)` が最終的に `88` の値で拒否されるプロミスを返す ``` to ```markdown `Promise.reject(3).then(() => {}, () => 88)` が最終的に `88` の値で履行されるプロミスを返す ```
- Loading branch information