summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-05-10 21:51:33 +0000
committerGeorg Brandl <georg@python.org>2010-05-10 21:51:33 +0000
commit6487952a46473f71816e6b13ca1bb5f1642a2a18 (patch)
treeef1ea3b232e9dc6759ec97ae7cb67d2b029dcf85
parent6f635f41f2aba9e175d9837704071004fc7aceea (diff)
downloadcpython-git-6487952a46473f71816e6b13ca1bb5f1642a2a18.tar.gz
Fix typo.
-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 4554b1ef9a..63895bca56 100644
--- a/Doc/library/io.rst
+++ b/Doc/library/io.rst
@@ -246,7 +246,7 @@ I/O Base Classes
Flush and close this stream. This method has no effect if the file is
already closed. Once the file is closed, any operation on the file
- (e.g. reading or writing) will raise an :exc:`ValueError`.
+ (e.g. reading or writing) will raise a :exc:`ValueError`.
As a convenience, it is allowed to call this method more than once;
only the first call, however, will have an effect.