Skip to content

Commit 6e92c23

Browse files
Change "parallel decomposition" to "concurrent decomposition" (#3856)
1 parent f227432 commit 6e92c23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kotlinx-coroutines-core/common/src/CoroutineScope.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ public object GlobalScope : CoroutineScope {
226226
* The provided scope inherits its [coroutineContext][CoroutineScope.coroutineContext] from the outer scope, but overrides
227227
* the context's [Job].
228228
*
229-
* This function is designed for _parallel decomposition_ of work. When any child coroutine in this scope fails,
229+
* This function is designed for _concurrent decomposition_ of work. When any child coroutine in this scope fails,
230230
* this scope fails and all the rest of the children are cancelled (for a different behavior see [supervisorScope]).
231231
* This function returns as soon as the given block and all its children coroutines are completed.
232232
* A usage example of a scope looks like this:

0 commit comments

Comments
 (0)