summaryrefslogtreecommitdiffstats
path: root/Doc/library/io.rst
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)
commit0069eac0e582aad4d0399b908f6bcdcb19827151 (patch)
treedae31228e1ae527b889103c904b136ebc8ba6f7c /Doc/library/io.rst
parentbe0a2d767cd603046a4709c9a3fb049a3ae25bd7 (diff)
downloadcpython-0069eac0e582aad4d0399b908f6bcdcb19827151.zip
cpython-0069eac0e582aad4d0399b908f6bcdcb19827151.tar.gz
cpython-0069eac0e582aad4d0399b908f6bcdcb19827151.tar.bz2
Issue #22004: Correct an argument name.
Diffstat (limited to 'Doc/library/io.rst')
-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 0c7d3c7..b8dc688 100644
--- a/Doc/library/io.rst
+++ b/Doc/library/io.rst
@@ -289,7 +289,7 @@ I/O Base Classes
most *size* 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)