File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
common/kotlinx-coroutines-core-common/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ import kotlin.jvm.*
13
13
* when all deferred computations are complete or resumes with the first thrown exception if any of computations
14
14
* complete exceptionally including cancellation.
15
15
*
16
- * This function is **not** equivalent to `deferreds.map { it.await() }` which fails only when when it sequentially
17
- * gets to wait the failing deferred, while this `awaitAll` fails immediately as soon as any of the deferreds fail.
16
+ * This function is **not** equivalent to `deferreds.map { it.await() }` which fails only when it sequentially
17
+ * gets to wait for the failing deferred, while this `awaitAll` fails immediately as soon as any of the deferreds fail.
18
18
*
19
19
* This suspending function is cancellable.
20
20
* If the [Job] of the current coroutine is cancelled or completed while this suspending function is waiting,
You can’t perform that action at this time.
0 commit comments