Skip to content

Commit b6d319b

Browse files
committed
grammatical tweaking
1 parent 11b754d commit b6d319b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/io.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -573,14 +573,14 @@ I/O Base Classes
573573

574574
Less bytes may be returned than requested. An empty :class:`bytes` object
575575
is returned if the stream is already at EOF. More than one read may be
576-
made, and calls may be retried if specific errors are encountered, see
576+
made and calls may be retried if specific errors are encountered, see
577577
:meth:`os.read` and :pep:`475` for more details. Less than size bytes
578578
being returned does not imply that EOF is imminent.
579579

580580
When reading as much as possible the default implementation will use
581581
``raw.readall`` if available (which should implement
582582
:meth:`RawIOBase.readall`), otherwise will read in a loop until read
583-
returns ``None``, a size-zero :class:`bytes`, or a non-retryable error. For
583+
returns ``None``, an empty :class:`bytes`, or a non-retryable error. For
584584
most streams this is to EOF, but for non-blocking streams more data may
585585
become available.
586586

0 commit comments

Comments
 (0)