]> granicus.if.org Git - python/commitdiff
Merged revisions 86896 via svnmerge from
authorDaniel Stutzbach <daniel@stutzbachenterprises.com>
Tue, 30 Nov 2010 17:54:31 +0000 (17:54 +0000)
committerDaniel Stutzbach <daniel@stutzbachenterprises.com>
Tue, 30 Nov 2010 17:54:31 +0000 (17:54 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86896 | daniel.stutzbach | 2010-11-30 09:49:53 -0800 (Tue, 30 Nov 2010) | 1 line

  Fix typo: "ofbytes" should be "of bytes"
........

Doc/library/io.rst

index f0d1cf3acfb08c779126ca4c9660e2bb2bbce2f1..22437cb482f4f3e3441114c218fff6b8b2da6f9a 100644 (file)
@@ -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)