summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-08 21:33:59 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-08 21:33:59 +0300
commit32df8314d58a3f0b437c551f6191f7c68b7c86ab (patch)
treea663e971c8566bac56a053aec2051e6157d30a23
parent6e0cee06e34530a8fe257ff48494832bf0166820 (diff)
downloadcpython-32df8314d58a3f0b437c551f6191f7c68b7c86ab.tar.gz
Issue #28376: Fixed typos.
Based on patch by Oren Milman.
-rw-r--r--Lib/_collections_abc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/_collections_abc.py b/Lib/_collections_abc.py
index fc9c9f1cc1..001f27495d 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()))