summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial/errors.rst
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-11-05 21:12:22 (GMT)
committerGitHub <noreply@github.com>2022-11-05 21:12:22 (GMT)
commite0fc2b3fd1f752e798d210971b2dbf3dc84c7b47 (patch)
treeb1994828c6823b0608018db32736aa76eda65d5b /Doc/tutorial/errors.rst
parent0a99a79afe66a555c63852f9853ff9009f3217aa (diff)
downloadcpython-e0fc2b3fd1f752e798d210971b2dbf3dc84c7b47.zip
cpython-e0fc2b3fd1f752e798d210971b2dbf3dc84c7b47.tar.gz
cpython-e0fc2b3fd1f752e798d210971b2dbf3dc84c7b47.tar.bz2
[doc] fix typo (GH-99143)
(cherry picked from commit 586b07e1f9f15825e6564df031744fe812b28655) Co-authored-by: Doj <34577424+visualdoj@users.noreply.github.com>
Diffstat (limited to 'Doc/tutorial/errors.rst')
-rw-r--r--Doc/tutorial/errors.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst
index 67bb195..e09c829 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.