Skip to content

Commit 5431deb

Browse files
adrianblancodeqwwdfsad
authored andcommitted
Remove typo in Job documentation
1 parent 6d7a216 commit 5431deb

File tree

1 file changed

+1
-1
lines changed
  • common/kotlinx-coroutines-core-common/src

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import kotlin.jvm.*
2424
* can [cancel] its own children (including all their children recursively) without cancelling itself.
2525
*
2626
* 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
2828
* of its parent and cancellation of the rest of its children. This behavior can be customized using [SupervisorJob].
2929
*
3030
* Conceptually, an execution of the job does not produce a result value. Jobs are launched solely for their

0 commit comments

Comments
 (0)