Skip to content

Commit 4f5a349

Browse files
maxnoemethane
authored andcommitted
fix typo in gzip.py (GH-12928)
1 parent d246a67 commit 4f5a349

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/gzip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def read(self, size=-1):
283283
def read1(self, size=-1):
284284
"""Implements BufferedIOBase.read1()
285285
286-
Reads up to a buffer's worth of data is size is negative."""
286+
Reads up to a buffer's worth of data if size is negative."""
287287
self._check_not_closed()
288288
if self.mode != READ:
289289
import errno

0 commit comments

Comments
 (0)