summaryrefslogtreecommitdiffstats
path: root/Doc/library/io.rst
diff options
context:
space:
mode:
authorÉric Araujo <aeric@mtlpy.org>2012-12-08 23:35:31 (GMT)
committerÉric Araujo <aeric@mtlpy.org>2012-12-08 23:35:31 (GMT)
commit9bc9ab5f853b0ac39b399dc22517a7aa96ffc8d7 (patch)
treedb37394e90fbbcb649182cbdbffe3f12d741fd4b /Doc/library/io.rst
parentd61926e6bef6c4d8105a2848362377dce91d7fc8 (diff)
downloadcpython-9bc9ab5f853b0ac39b399dc22517a7aa96ffc8d7.zip
cpython-9bc9ab5f853b0ac39b399dc22517a7aa96ffc8d7.tar.gz
cpython-9bc9ab5f853b0ac39b399dc22517a7aa96ffc8d7.tar.bz2
Fix a few markup/grammar nits
Diffstat (limited to 'Doc/library/io.rst')
-rw-r--r--Doc/library/io.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/io.rst b/Doc/library/io.rst
index 7cab685..1939352 100644
--- a/Doc/library/io.rst
+++ b/Doc/library/io.rst
@@ -236,7 +236,7 @@ I/O Base Classes
Note that calling any method (even inquiries) on a closed stream is
undefined. Implementations may raise :exc:`IOError` in this case.
- IOBase (and its subclasses) support the iterator protocol, meaning that an
+ IOBase (and its subclasses) supports the iterator protocol, meaning that an
:class:`IOBase` object can be iterated over yielding the lines in a stream.
Lines are defined slightly differently depending on whether the stream is
a binary stream (yielding bytes), or a text stream (yielding character