diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-08 18:33:59 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-08 18:33:59 (GMT) |
commit | 3bd9fde4dfa2e8c50ea10c48a819b1dddafb6dc4 (patch) | |
tree | 0ffb050cfd8c50fe24495b040ac05a57a4da8d1c /Lib | |
parent | 8ef34600c7dfa2608fe1ad235cf5fc36392fe469 (diff) | |
download | cpython-3bd9fde4dfa2e8c50ea10c48a819b1dddafb6dc4.zip cpython-3bd9fde4dfa2e8c50ea10c48a819b1dddafb6dc4.tar.gz cpython-3bd9fde4dfa2e8c50ea10c48a819b1dddafb6dc4.tar.bz2 |
Issue #28376: Fixed typos.
Based on patch by Oren Milman.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/_collections_abc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/_collections_abc.py b/Lib/_collections_abc.py index fc9c9f1..001f274 100644 --- a/Lib/_collections_abc.py +++ b/Lib/_collections_abc.py @@ -29,8 +29,8 @@ __name__ = "collections.abc" # so that they will pass tests like: # it = iter(somebytearray) # assert isinstance(it, Iterable) -# Note: in other implementations, these types many not be distinct -# and they make have their own implementation specific types that +# Note: in other implementations, these types might not be distinct +# and they may have their own implementation specific types that # are not included on this list. bytes_iterator = type(iter(b'')) bytearray_iterator = type(iter(bytearray())) |