File tree 1 file changed +1
-1
lines changed
common/kotlinx-coroutines-core-common/src
1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import kotlin.jvm.*
24
24
* can [cancel] its own children (including all their children recursively) without cancelling itself.
25
25
*
26
26
* The most basic instances of [Job] are created with [launch][CoroutineScope.launch] coroutine builder or with a
27
- * `Job()` factory function. By default, a failure of a any of the job's children leads to an immediately failure
27
+ * `Job()` factory function. By default, a failure of any of the job's children leads to an immediately failure
28
28
* of its parent and cancellation of the rest of its children. This behavior can be customized using [SupervisorJob].
29
29
*
30
30
* Conceptually, an execution of the job does not produce a result value. Jobs are launched solely for their
You can’t perform that action at this time.
0 commit comments