summaryrefslogtreecommitdiffstats
path: root/Doc/library/stdtypes.rst
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2012-06-02 15:21:31 (GMT)
committerR David Murray <rdmurray@bitdance.com>2012-06-02 15:21:31 (GMT)
commitde738a1b82a27010778b30b66258bd206b7c9c1e (patch)
tree2ecb57177b8f6f6d396654f7dc3c86d3db696bee /Doc/library/stdtypes.rst
parentaad5b02e621a64560af56937523e0072701e8c86 (diff)
downloadcpython-de738a1b82a27010778b30b66258bd206b7c9c1e.zip
cpython-de738a1b82a27010778b30b66258bd206b7c9c1e.tar.gz
cpython-de738a1b82a27010778b30b66258bd206b7c9c1e.tar.bz2
#14957: fix doc typo.
Diffstat (limited to 'Doc/library/stdtypes.rst')
-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 66facca..162b692 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -1190,7 +1190,7 @@ string 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']``.