]> granicus.if.org Git - python/commitdiff
fix typo in doc string
authorBenjamin Peterson <benjamin@python.org>
Sun, 6 Apr 2008 16:47:13 +0000 (16:47 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sun, 6 Apr 2008 16:47:13 +0000 (16:47 +0000)
Lib/io.py

index fa103ddcff741ee95c0e564767f587c26c12f564..fe03bf2bfc06c00be8940f8f875e335f1824b47a 100644 (file)
--- 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 ###