From 9a89e96f9f0c60d4032d888a38b6890f4e634ae6 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 6 Apr 2008 16:47:13 +0000 Subject: [PATCH] fix typo in doc string --- Lib/io.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/io.py b/Lib/io.py index fa103ddcff7..fe03bf2bfc0 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 ###