diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-04-13 23:46:27 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-04-13 23:46:27 (GMT) |
commit | 13d4a61075d4340cd7aa1308b2a0b25aac2cc353 (patch) | |
tree | 71d8201a9bc0f3edd0404a24c5a9097792c2d572 | |
parent | d860762ce571f5ae97e6ffdc46301575ef37b862 (diff) | |
download | cpython-13d4a61075d4340cd7aa1308b2a0b25aac2cc353.zip cpython-13d4a61075d4340cd7aa1308b2a0b25aac2cc353.tar.gz cpython-13d4a61075d4340cd7aa1308b2a0b25aac2cc353.tar.bz2 |
Another io doc fix
-rw-r--r-- | Doc/library/io.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/io.rst b/Doc/library/io.rst index e788347..f705c30 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -447,7 +447,7 @@ Buffered Streams .. class:: BufferedReader(raw[, buffer_size]) - A buffer for a readable, sequential :class:`BaseRawIO` object. It inherits + A buffer for a readable, sequential :class:`RawIOBase` object. It inherits :class:`BufferedIOBase`. The constructor creates a :class:`BufferedReader` for the given readable |