summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-07-18 14:11:48 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-07-18 14:11:48 (GMT)
commita2dd3b23af1aa638a5ecea20f1c43e894b5fc10e (patch)
tree481bc6592dc015abcb49d2e73c327ec99fe04c02
parente7829bdf122f1b481a09c4aab00821f02052191b (diff)
downloadcpython-a2dd3b23af1aa638a5ecea20f1c43e894b5fc10e.zip
cpython-a2dd3b23af1aa638a5ecea20f1c43e894b5fc10e.tar.gz
cpython-a2dd3b23af1aa638a5ecea20f1c43e894b5fc10e.tar.bz2
Issue #22004: Correct an argument name.
-rw-r--r--Doc/library/io.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/io.rst b/Doc/library/io.rst
index 7b40085..ab5a043 100644
--- a/Doc/library/io.rst
+++ b/Doc/library/io.rst
@@ -287,7 +287,7 @@ I/O Base Classes
most *limit* bytes will be read.
The line terminator is always ``b'\n'`` for binary files; for text files,
- the *newlines* argument to :func:`.open` can be used to select the line
+ the *newline* argument to :func:`.open` can be used to select the line
terminator(s) recognized.
.. method:: readlines(hint=-1)