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 eb21974 commit 6a6e62dCopy full SHA for 6a6e62d
kotlinx-coroutines-core/common/src/Job.kt
@@ -382,7 +382,6 @@ public interface Job : CoroutineContext.Element {
382
*
383
* If [parent] job is specified, then this job becomes a child job of its parent and
384
* is cancelled when its parent fails or is cancelled. All this job's children are cancelled in this case, too.
385
- * The invocation of [cancel][Job.cancel] with exception (other than [CancellationException]) on this job also cancels parent.
386
387
* Conceptually, the resulting job works in the same way as the job created by the `launch { body }` invocation
388
* (see [launch]), but without any code in the body. It is active until cancelled or completed. Invocation of
0 commit comments