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 3a8342d commit d981966Copy full SHA for d981966
docs/exception-handling.md
@@ -377,7 +377,7 @@ import kotlin.coroutines.*
377
fun main(args: Array<String>) = runBlocking {
378
val supervisor = SupervisorJob()
379
with(CoroutineScope(coroutineContext + supervisor)) {
380
- // launch the first child -- its exception is ignored for this example (don't do this in practise!)
+ // launch the first child -- its exception is ignored for this example (don't do this in practice!)
381
val firstChild = launch(CoroutineExceptionHandler { _, _ -> }) {
382
println("First child is failing")
383
throw AssertionError("First child is cancelled")
0 commit comments