From 7b7b1be6f8cc514e7c5de7aee5d48a8eb4b2da58 Mon Sep 17 00:00:00 2001 From: Tian Gao Date: Tue, 8 Apr 2025 12:05:00 -0400 Subject: [PATCH] Fix a typo in pdb's exceptions command --- Doc/library/pdb.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst index 75f4b370795282..8601f390aeb9c9 100644 --- a/Doc/library/pdb.rst +++ b/Doc/library/pdb.rst @@ -769,7 +769,7 @@ can be overridden by the local file. When using ``pdb.pm()`` or ``Pdb.post_mortem(...)`` with a chained exception instead of a traceback, it allows the user to move between the chained exceptions using ``exceptions`` command to list exceptions, and - ``exception `` to switch to that exception. + ``exceptions `` to switch to that exception. Example::