From: Benjamin Peterson Date: Sun, 6 Apr 2008 16:47:13 +0000 (+0000) Subject: fix typo in doc string X-Git-Tag: v3.0a5~133 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9a89e96f9f0c60d4032d888a38b6890f4e634ae6;p=thirdparty%2FPython%2Fcpython.git fix typo in doc string --- diff --git a/Lib/io.py b/Lib/io.py index fa103ddcff74..fe03bf2bfc06 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 ###