summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-06-02 15:20:53 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-06-02 15:20:53 (GMT)
commitf4b26ef250265982da3e85161a6d65e6f890f7d7 (patch)
tree0f56ff3c73102194a80fafd130b4cc07e50cd9a9 /Doc
parentc8162900594c39e4963979ba3b428dbad8cb6cb5 (diff)
parent554b3481fa51f8a8cc18815d7c80229c584e315b (diff)
downloadcpython-f4b26ef250265982da3e85161a6d65e6f890f7d7.zip
cpython-f4b26ef250265982da3e85161a6d65e6f890f7d7.tar.gz
cpython-f4b26ef250265982da3e85161a6d65e6f890f7d7.tar.bz2
#14957: fix doc typo.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/stdtypes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index b01c892..8dc58e9 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -1358,7 +1358,7 @@ functions based on regular expressions.
the returned list does ``not`` have an empty last element.
For example, ``'ab c\n\nde fg\rkl\r\n'.splitlines()`` returns
- ``['ab c', '', 'de fg', 'kl']``, while the same call with ``splinelines(True)``
+ ``['ab c', '', 'de fg', 'kl']``, while the same call with ``splitlines(True)``
returns ``['ab c\n', '\n, 'de fg\r', 'kl\r\n']``.