fixed typo
diff --git a/docs/exception-handling.md b/docs/exception-handling.md
index ab52aee..d50fba0 100644
--- a/docs/exception-handling.md
+++ b/docs/exception-handling.md
@@ -377,7 +377,7 @@
 fun main(args: Array<String>) = runBlocking {
     val supervisor = SupervisorJob()
     with(CoroutineScope(coroutineContext + supervisor)) {
-        // 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!)
         val firstChild = launch(CoroutineExceptionHandler { _, _ ->  }) {
             println("First child is failing")
             throw AssertionError("First child is cancelled")