From: Doj <34577424+visualdoj@users.noreply.github.com> Date: Sat, 5 Nov 2022 21:03:29 +0000 (+0300) Subject: [doc] fix typo (GH-99143) X-Git-Tag: v3.12.0a2~114 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=586b07e1f9f15825e6564df031744fe812b28655;p=thirdparty%2FPython%2Fcpython.git [doc] fix typo (GH-99143) --- diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst index 67bb19556681..e09c829b8e97 100644 --- a/Doc/tutorial/errors.rst +++ b/Doc/tutorial/errors.rst @@ -496,7 +496,7 @@ Raising and Handling Multiple Unrelated Exceptions ================================================== There are situations where it is necessary to report several exceptions that -have occurred. This it often the case in concurrency frameworks, when several +have occurred. This is often the case in concurrency frameworks, when several tasks may have failed in parallel, but there are also other use cases where it is desirable to continue execution and collect multiple errors rather than raise the first exception.