summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial
diff options
context:
space:
mode:
authorDoj <34577424+visualdoj@users.noreply.github.com>2022-11-05 21:03:29 (GMT)
committerGitHub <noreply@github.com>2022-11-05 21:03:29 (GMT)
commit586b07e1f9f15825e6564df031744fe812b28655 (patch)
treeef7ca1b12acef68278a15a95178ee6d2da5229be /Doc/tutorial
parent47ab8480e71ab3949a336a94c7fd146b1fce595d (diff)
downloadcpython-586b07e1f9f15825e6564df031744fe812b28655.zip
cpython-586b07e1f9f15825e6564df031744fe812b28655.tar.gz
cpython-586b07e1f9f15825e6564df031744fe812b28655.tar.bz2
[doc] fix typo (GH-99143)
Diffstat (limited to 'Doc/tutorial')
-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.