summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-06-02 15:20:29 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-06-02 15:20:29 (GMT)
commit554b3481fa51f8a8cc18815d7c80229c584e315b (patch)
treeb3cf918372ca4f5c994459cc3bf94be074aa85fd /Doc/library
parent8e8fbeae27e3fbfa80ad59fd2aeb563116e6a4c4 (diff)
downloadcpython-554b3481fa51f8a8cc18815d7c80229c584e315b.zip
cpython-554b3481fa51f8a8cc18815d7c80229c584e315b.tar.gz
cpython-554b3481fa51f8a8cc18815d7c80229c584e315b.tar.bz2
#14957: fix doc typo.
Diffstat (limited to 'Doc/library')
-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 8f7fc5c..b2381e6 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -1334,7 +1334,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']``.