]> granicus.if.org Git - python/commitdiff
Merged revisions 86896 via svnmerge from
authorDaniel Stutzbach <daniel@stutzbachenterprises.com>
Tue, 30 Nov 2010 17:58:13 +0000 (17:58 +0000)
committerDaniel Stutzbach <daniel@stutzbachenterprises.com>
Tue, 30 Nov 2010 17:58:13 +0000 (17:58 +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 5d6a69718bc2eeef3e94531b362db4733dcde8ef..54970e237483175641e8dee8e8e17dea5195755e 100644 (file)
@@ -371,9 +371,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)