We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae57774 commit 7cc53d9Copy full SHA for 7cc53d9
kotlinx-coroutines-core/common/src/CoroutineScope.kt
@@ -181,7 +181,7 @@ public suspend fun <R> coroutineScope(block: suspend CoroutineScope.() -> R): R
181
* Creates a [CoroutineScope] that wraps the given coroutine [context].
182
*
183
* If the given [context] does not contain a [Job] element, then a default `Job()` is created.
184
- * This way, cancellation or failure or any child coroutine in this scope cancels all the other children,
+ * This way, cancellation or failure of any child coroutine in this scope cancels all the other children,
185
* just like inside [coroutineScope] block.
186
*/
187
@Suppress("FunctionName")
0 commit comments