diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-06-02 15:20:29 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-06-02 15:20:29 (GMT) |
commit | 554b3481fa51f8a8cc18815d7c80229c584e315b (patch) | |
tree | b3cf918372ca4f5c994459cc3bf94be074aa85fd /Doc/library | |
parent | 8e8fbeae27e3fbfa80ad59fd2aeb563116e6a4c4 (diff) | |
download | cpython-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.rst | 2 |
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']``. |