summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2009-10-05 21:24:20 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2009-10-05 21:24:20 (GMT)
commit3fab04078d58bccc873837c2f243ed792163031c (patch)
treef500d32d32b313aa57b5c551413ae73a90f5d652 /Doc
parent3de464702220bf4256d8ab0a0c9a3c00831c8bcd (diff)
downloadcpython-3fab04078d58bccc873837c2f243ed792163031c.zip
cpython-3fab04078d58bccc873837c2f243ed792163031c.tar.gz
cpython-3fab04078d58bccc873837c2f243ed792163031c.tar.bz2
Wording fix
Diffstat (limited to 'Doc')
-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 99dea6d..c8e79b4 100644
--- a/Doc/library/pdb.rst
+++ b/Doc/library/pdb.rst
@@ -58,7 +58,7 @@ insert ::
import pdb; pdb.set_trace()
at the location you want to break into the debugger. You can then step through
-the code following this statement, and continue running without debugger using
+the code following this statement, and continue running without the debugger using
the ``c`` command.
The typical usage to inspect a crashed program is::