diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-17 05:32:47 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-17 05:32:47 (GMT) |
commit | 6a7b3a77b4b2be0badd24ee5f0fdbaa2e0e79c3d (patch) | |
tree | 69e2dda76d29c6ac33906e0ad2e1359c5bc8e0e4 /Lib/test/test_binop.py | |
parent | 50dd1f7dd68ed2f526adfebd5caa342e26da4517 (diff) | |
download | cpython-6a7b3a77b4b2be0badd24ee5f0fdbaa2e0e79c3d.zip cpython-6a7b3a77b4b2be0badd24ee5f0fdbaa2e0e79c3d.tar.gz cpython-6a7b3a77b4b2be0badd24ee5f0fdbaa2e0e79c3d.tar.bz2 |
Issue #26778: Fixed "a/an/and" typos in code comment and documentation.
Diffstat (limited to 'Lib/test/test_binop.py')
-rw-r--r-- | Lib/test/test_binop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_binop.py b/Lib/test/test_binop.py index 823740c..e9dbddc 100644 --- a/Lib/test/test_binop.py +++ b/Lib/test/test_binop.py @@ -58,7 +58,7 @@ class Rat(object): den = property(_get_den, None) def __repr__(self): - """Convert a Rat to an string resembling a Rat constructor call.""" + """Convert a Rat to a string resembling a Rat constructor call.""" return "Rat(%d, %d)" % (self.__num, self.__den) def __str__(self): |