We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3661393 + d43bdd2 commit 1b16f9dCopy full SHA for 1b16f9d
1-js/11-async/05-promise-api/article.md
@@ -18,7 +18,7 @@ let promise = Promise.all([...promises...]);
18
19
`Promise.all` takes an array of promises (it technically can be any iterable, but is usually an array) and returns a new promise.
20
21
-The new promise resolves when all listed promises are settled, and the array of their results becomes its result.
+The new promise resolves when all listed promises are resolved, and the array of their results becomes its result.
22
23
For instance, the `Promise.all` below settles after 3 seconds, and then its result is an array `[1, 2, 3]`:
24
0 commit comments