summaryrefslogtreecommitdiffstats
path: root/Doc/library/pdb.rst
diff options
context:
space:
mode:
authorDavid Lowry-Duda <david@lowryduda.com>2024-06-06 21:35:24 (GMT)
committerGitHub <noreply@github.com>2024-06-06 21:35:24 (GMT)
commit5bdc87b8859c837092e7c5b19583f98488f7a387 (patch)
treec7cc1f3a4df2397f46d7096dd8a17c17e35f6465 /Doc/library/pdb.rst
parente21057b99967eb5323320e6d1121955e0cd2985e (diff)
downloadcpython-5bdc87b8859c837092e7c5b19583f98488f7a387.zip
cpython-5bdc87b8859c837092e7c5b19583f98488f7a387.tar.gz
cpython-5bdc87b8859c837092e7c5b19583f98488f7a387.tar.bz2
gh-120178: Documentation typo corrections (#120179)
Diffstat (limited to 'Doc/library/pdb.rst')
-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 cd64962..f608517 100644
--- a/Doc/library/pdb.rst
+++ b/Doc/library/pdb.rst
@@ -341,7 +341,7 @@ can be overridden by the local file.
With a *lineno* argument, set a break at line *lineno* in the current file.
The line number may be prefixed with a *filename* and a colon,
to specify a breakpoint in another file (possibly one that hasn't been loaded
- yet). The file is searched on :data:`sys.path`. Accepatable forms of *filename*
+ yet). The file is searched on :data:`sys.path`. Acceptable forms of *filename*
are ``/abspath/to/file.py``, ``relpath/file.py``, ``module`` and
``package.module``.