summaryrefslogtreecommitdiff
path: root/Lib/io.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-04-06 16:47:13 +0000
committerBenjamin Peterson <benjamin@python.org>2008-04-06 16:47:13 +0000
commit9a89e96f9f0c60d4032d888a38b6890f4e634ae6 (patch)
tree0eea3aaa46a81a2accd7fe4d5b7c7f3f868031e9 /Lib/io.py
parent42f2ae0f69cf9dbf59b49685413a5750d11f4438 (diff)
downloadcpython-git-9a89e96f9f0c60d4032d888a38b6890f4e634ae6.tar.gz
fix typo in doc string
Diffstat (limited to 'Lib/io.py')
-rw-r--r--Lib/io.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/io.py b/Lib/io.py
index fa103ddcff..fe03bf2bfc 100644
--- a/Lib/io.py
+++ b/Lib/io.py
@@ -228,8 +228,8 @@ class IOBase(metaclass=abc.ABCMeta):
This does not define read(), readinto() and write(), nor
readline() and friends, since their signatures vary per layer.
- Not that calling any method (even inquiries) on a closed file is
- undefined. Implementations may raise IOError in this case.
+ Note that calling any method (even inquiries) on a closed file is
+ undefined. Implementations may raise IOError in this case.
"""
### Internal ###