diff --git a/1-js/11-async/05-promise-api/article.md b/1-js/11-async/05-promise-api/article.md index 40a24c5f59..1e6ae76f8e 100644 --- a/1-js/11-async/05-promise-api/article.md +++ b/1-js/11-async/05-promise-api/article.md @@ -100,7 +100,7 @@ Promise.all([ ``` ````smart header="`Promise.all(iterable)` 允许在 `iterable` 中使用 non-promise 的“常规”值" -通常,`Promise.all(...)` 接受可迭代对象(iterable)的 promise(大多数情况下是数组)。但是,如果这些对象中的任意一个都不是 promise,那么它将被“按原样”传递给结果数组。 +通常,`Promise.all(...)` 接受含有 promise 项的可迭代对象(大多数情况下是数组)作为参数。但是,如果这些对象中的任何一个不是 promise,那么它将被“按原样”传递给结果数组。 例如,这里的结果是 `[1, 2, 3]`: