]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #18336. Fix a link to StreamReader's read() method.
authorSerhiy Storchaka <storchaka@gmail.com>
Thu, 11 Jul 2013 15:25:19 +0000 (18:25 +0300)
committerSerhiy Storchaka <storchaka@gmail.com>
Thu, 11 Jul 2013 15:25:19 +0000 (18:25 +0300)
Doc/library/codecs.rst

index 39a3c5dff603b4928e95d56ccf6b20345f79ba63..61da3ed9e7e8ed49bbb9a65ed867cd5667b46d9d 100644 (file)
@@ -653,7 +653,7 @@ compatible with the Python codec registry.
       Read one line from the input stream and return the decoded data.
 
       *size*, if given, is passed as size argument to the stream's
-      :meth:`readline` method.
+      :meth:`read` method.
 
       If *keepends* is false line-endings will be stripped from the lines
       returned.