summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-08-04 13:07:31 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-08-04 13:07:31 (GMT)
commit69332c1a64d6bdb80ff813fab403be832e12ce64 (patch)
treec61ce7d7f833c11b0e665d780d06107f39228342 /Tools
parent72e483aac42a1e1bd2e2b1ed72a3c9e8dbc6be96 (diff)
downloadcpython-69332c1a64d6bdb80ff813fab403be832e12ce64.zip
cpython-69332c1a64d6bdb80ff813fab403be832e12ce64.tar.gz
cpython-69332c1a64d6bdb80ff813fab403be832e12ce64.tar.bz2
Fix spelling and grammar in documentation and code comments
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/i18n/pygettext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/i18n/pygettext.py b/Tools/i18n/pygettext.py
index 3c6c14c..da42438 100755
--- a/Tools/i18n/pygettext.py
+++ b/Tools/i18n/pygettext.py
@@ -475,7 +475,7 @@ class TokenEater:
'# File: %(filename)s, line: %(lineno)d') % d, file=fp)
elif options.locationstyle == options.GNU:
# fit as many locations on one line, as long as the
- # resulting line length doesn't exceeds 'options.width'
+ # resulting line length doesn't exceed 'options.width'
locline = '#:'
for filename, lineno in v:
d = {'filename': filename, 'lineno': lineno}