diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-06-02 15:20:53 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-06-02 15:20:53 (GMT) |
commit | f4b26ef250265982da3e85161a6d65e6f890f7d7 (patch) | |
tree | 0f56ff3c73102194a80fafd130b4cc07e50cd9a9 | |
parent | c8162900594c39e4963979ba3b428dbad8cb6cb5 (diff) | |
parent | 554b3481fa51f8a8cc18815d7c80229c584e315b (diff) | |
download | cpython-f4b26ef250265982da3e85161a6d65e6f890f7d7.zip cpython-f4b26ef250265982da3e85161a6d65e6f890f7d7.tar.gz cpython-f4b26ef250265982da3e85161a6d65e6f890f7d7.tar.bz2 |
#14957: fix doc typo.
-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 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']``. |