summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorDaniel Haag <121057143+denialhaag@users.noreply.github.com>2024-12-12 21:43:44 (GMT)
committerGitHub <noreply@github.com>2024-12-12 21:43:44 (GMT)
commit0cbc19d59e409854f2b9bdda75e1af2b6cd89ac2 (patch)
tree799b485066485f63881b930349f3efc2d6760095 /Doc
parent8ac307f0d6834148471d2e12a45bf022e659164c (diff)
downloadcpython-0cbc19d59e409854f2b9bdda75e1af2b6cd89ac2.zip
cpython-0cbc19d59e409854f2b9bdda75e1af2b6cd89ac2.tar.gz
cpython-0cbc19d59e409854f2b9bdda75e1af2b6cd89ac2.tar.bz2
Fix typo in traceback docs (#127884)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/traceback.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/traceback.rst b/Doc/library/traceback.rst
index 4899ed6..b0ee3fc 100644
--- a/Doc/library/traceback.rst
+++ b/Doc/library/traceback.rst
@@ -274,7 +274,7 @@ Module-Level Functions
:class:`!TracebackException` objects are created from actual exceptions to
capture data for later printing. They offer a more lightweight method of
storing this information by avoiding holding references to
-:ref:`traceback<traceback-objects>` and :ref:`frame<frame-objects>` objects
+:ref:`traceback<traceback-objects>` and :ref:`frame<frame-objects>` objects.
In addition, they expose more options to configure the output compared to
the module-level functions described above.