Fix typo in comment (GH-26162)

This commit is contained in:
Ashwin Ramaswami 2021-05-16 11:35:41 -04:00 committed by GitHub
parent 51cef8be8c
commit de367378f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -521,7 +521,7 @@ class _GzipReader(_compression.DecompressReader):
def _read_eof(self):
# We've read to the end of the file
# We check the that the computed CRC and size of the
# We check that the computed CRC and size of the
# uncompressed data matches the stored values. Note that the size
# stored is the true file size mod 2**32.
crc32, isize = struct.unpack("<II", self._read_exact(8))