Skip to content

Commit

Permalink
fix fulfilled typo (#16381)
Browse files Browse the repository at this point in the history
  • Loading branch information
zzuieliyaoli authored Oct 5, 2023
1 parent d874949 commit 3e5ed30
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Promise.any(iterable)
一个 {{jsxref("Promise")}},其状态为:

- **已拒绝(already rejected)**,如果传入的 `iterable` 为空的话。
- **异步兑现(asynchronously filfilled**,当给定的 `iterable` 中的任何一个 Promise 被兑现时,返回的 Promise 就会被兑现。其兑现值是第一个兑现的 Promise 的兑现值。
- **异步兑现(asynchronously fulfilled**,当给定的 `iterable` 中的任何一个 Promise 被兑现时,返回的 Promise 就会被兑现。其兑现值是第一个兑现的 Promise 的兑现值。
- **异步拒绝(asynchronously rejected)**,当给定的 `iterable` 中的所有 Promise 都被拒绝时。拒绝原因是一个 {{jsxref("AggregateError")}},其 `errors` 属性包含一个拒绝原因数组。无论完成顺序如何,这些错误都是按照传入的 Promise 的顺序排序。如果传递的 `iterable` 是非空的,但不包含待定的 Promise,则返回的 Promise 仍然是异步拒绝的(而不是同步拒绝的)。

## 描述
Expand Down

0 comments on commit 3e5ed30

Please sign in to comment.