diff options
author | Daniel Stutzbach <daniel@stutzbachenterprises.com> | 2010-11-30 17:49:53 (GMT) |
---|---|---|
committer | Daniel Stutzbach <daniel@stutzbachenterprises.com> | 2010-11-30 17:49:53 (GMT) |
commit | d01df46848da8c500665cfd59b84a1ebf25f25a2 (patch) | |
tree | 05c6fb9b49278c97dce2d181874c3c4195b0df97 /Doc/library/io.rst | |
parent | dcb4491b0aef708ea006c2cb98870b73f1953087 (diff) | |
download | cpython-d01df46848da8c500665cfd59b84a1ebf25f25a2.zip cpython-d01df46848da8c500665cfd59b84a1ebf25f25a2.tar.gz cpython-d01df46848da8c500665cfd59b84a1ebf25f25a2.tar.bz2 |
Fix typo: "ofbytes" should be "of bytes"
Diffstat (limited to 'Doc/library/io.rst')
-rw-r--r-- | Doc/library/io.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/io.rst b/Doc/library/io.rst index 5a2de14..c6605c8 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -361,9 +361,9 @@ I/O Base Classes .. method:: readinto(b) - Read up to len(b) bytes into bytearray *b* and return the number ofbytes - read. If the object is in non-blocking mode and no bytes are available, - ``None`` is returned. + Read up to len(b) bytes into bytearray *b* and return the number + of bytes read. If the object is in non-blocking mode and no + bytes are available, ``None`` is returned. .. method:: write(b) |