Skip to content

Commit 54ae3b5

Browse files
Update kotlinx-coroutines-core/common/src/JobSupport.kt
Co-authored-by: Dmitry Khalanskiy <[email protected]>
1 parent 3a71043 commit 54ae3b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ public open class JobSupport constructor(active: Boolean) : Job, ChildJob, Paren
949949
* It's done via an addition of a special completion handler to the child that, when invoked, invokes
950950
* [continueCompleting] that almost immediately fallbacks to [tryWaitForChildren].
951951
*
952-
* If it returns `false` then there is no children to wait for and it's safe to finalize the final job's state.
952+
* If it returns `false`, then there are no children to wait for and it's safe to finalize the final job's state.
953953
* Note that at this point, new children can appear:
954954
* * If the state is `cancelling`, they are immediately cancelled.
955955
* * If the state is `completing`, they are not cancelled; instead, we observe an inconsistent state where their parent is completed and doesn't store references to the children, but they are still active.

0 commit comments

Comments
 (0)