]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #28376: Fixed typos.
authorSerhiy Storchaka <storchaka@gmail.com>
Sat, 8 Oct 2016 18:33:59 +0000 (21:33 +0300)
committerSerhiy Storchaka <storchaka@gmail.com>
Sat, 8 Oct 2016 18:33:59 +0000 (21:33 +0300)
Based on patch by Oren Milman.

Lib/_collections_abc.py

index fc9c9f1cc14eee1f7399c1a3c7599c139cebbd32..001f27495d7169153addc6cce5b580aa0a352b0a 100644 (file)
@@ -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()))