summaryrefslogtreecommitdiff
path: root/Doc/library
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2016-08-24 17:52:57 -0400
committerTerry Jan Reedy <tjreedy@udel.edu>2016-08-24 17:52:57 -0400
commit4a9e04b95433b9cdff9e92f3e3b38b8b5347ba42 (patch)
tree8aa603cfbe6746c9626d56884fe93ebf609eca8a /Doc/library
parent16ed7db0454cc415a385854314be9920c1ca68c5 (diff)
downloadcpython-4a9e04b95433b9cdff9e92f3e3b38b8b5347ba42.tar.gz
Fix misspelling
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/pdb.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst
index 471d1ea83d..d77de2e2bb 100644
--- a/Doc/library/pdb.rst
+++ b/Doc/library/pdb.rst
@@ -158,7 +158,7 @@ access further features, you have to do this yourself:
By default, Pdb sets a handler for the SIGINT signal (which is sent when the
user presses :kbd:`Ctrl-C` on the console) when you give a ``continue`` command.
This allows you to break into the debugger again by pressing :kbd:`Ctrl-C`. If you
- want Pdb not to touch the SIGINT handler, set *nosigint* tot true.
+ want Pdb not to touch the SIGINT handler, set *nosigint* to true.
Example call to enable tracing with *skip*::