From 9c279e80b70ba663e28918614a86e17749749d17 Mon Sep 17 00:00:00 2001 From: Masood Fallahpoor Date: Fri, 25 Sep 2020 19:48:56 +0330 Subject: [PATCH] Update exception-handling.md Add a missing article --- docs/exception-handling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/exception-handling.md b/docs/exception-handling.md index 5618cafbdc..d0b6b517a8 100644 --- a/docs/exception-handling.md +++ b/docs/exception-handling.md @@ -19,7 +19,7 @@ ## Exception Handling This section covers exception handling and cancellation on exceptions. -We already know that cancelled coroutine throws [CancellationException] in suspension points and that it +We already know that a cancelled coroutine throws [CancellationException] in suspension points and that it is ignored by the coroutines' machinery. Here we look at what happens if an exception is thrown during cancellation or multiple children of the same coroutine throw an exception.