diff options
author | Eitan Adler <grimreaper@users.noreply.github.com> | 2018-06-02 07:16:19 -0700 |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2018-06-02 07:16:19 -0700 |
commit | b5c246f833d95991fed728c3845176dd661cd5ea (patch) | |
tree | 145a32798da288a0f5863dd5349968892460a0e0 /Lib | |
parent | 8425de4147eb8d83befbb8ea77516fc764bb4309 (diff) | |
download | cpython-git-b5c246f833d95991fed728c3845176dd661cd5ea.tar.gz |
Docs: fix some wrong words (GH-6987)
Fix typos in code comments: bdb.py and configure.ac.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/bdb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bdb.py b/Lib/bdb.py index c6a10359ac..880ff5daf9 100644 --- a/Lib/bdb.py +++ b/Lib/bdb.py @@ -257,7 +257,7 @@ class Bdb: pass def user_line(self, frame): - """Called when when we stop or break at a line.""" + """Called when we stop or break at a line.""" pass def user_return(self, frame, return_value): |