Skip to content

Commit d981966

Browse files
vadymhimselfelizarov
authored andcommitted
fixed typo
1 parent 3a8342d commit d981966

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/exception-handling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ import kotlin.coroutines.*
377377
fun main(args: Array<String>) = runBlocking {
378378
val supervisor = SupervisorJob()
379379
with(CoroutineScope(coroutineContext + supervisor)) {
380-
// launch the first child -- its exception is ignored for this example (don't do this in practise!)
380+
// launch the first child -- its exception is ignored for this example (don't do this in practice!)
381381
val firstChild = launch(CoroutineExceptionHandler { _, _ -> }) {
382382
println("First child is failing")
383383
throw AssertionError("First child is cancelled")

0 commit comments

Comments
 (0)