@@ -590,7 +590,7 @@ def read_bytes8(f):
590590 reader = read_bytes8 ,
591591 doc = """A counted bytes string.
592592
593- The first argument is a 8-byte little-endian unsigned int giving
593+ The first argument is an 8-byte little-endian unsigned int giving
594594 the number of bytes, and the second argument is that many bytes.
595595 """ )
596596
@@ -734,7 +734,7 @@ def read_unicodestring8(f):
734734 reader = read_unicodestring8 ,
735735 doc = """A counted Unicode string.
736736
737- The first argument is a 8-byte little-endian signed int
737+ The first argument is an 8-byte little-endian signed int
738738 giving the number of bytes in the string, and the second
739739 argument-- the UTF-8 encoding of the Unicode string --
740740 contains that many bytes.
@@ -1330,7 +1330,7 @@ def __init__(self, name, code, arg,
13301330 proto = 4 ,
13311331 doc = """Push a Python bytes object.
13321332
1333- There are two arguments: the first is a 8-byte unsigned int giving
1333+ There are two arguments: the first is an 8-byte unsigned int giving
13341334 the number of bytes in the string, and the second is that many bytes,
13351335 which are taken literally as the string content.
13361336 """ ),
@@ -1417,7 +1417,7 @@ def __init__(self, name, code, arg,
14171417 proto = 4 ,
14181418 doc = """Push a Python Unicode string object.
14191419
1420- There are two arguments: the first is a 8-byte little-endian signed int
1420+ There are two arguments: the first is an 8-byte little-endian signed int
14211421 giving the number of bytes in the string. The second is that many
14221422 bytes, and is the UTF-8 encoding of the Unicode string.
14231423 """ ),
0 commit comments