diff options
| author | R David Murray <rdmurray@bitdance.com> | 2012-06-02 11:20:29 -0400 |
|---|---|---|
| committer | R David Murray <rdmurray@bitdance.com> | 2012-06-02 11:20:29 -0400 |
| commit | 554b3481fa51f8a8cc18815d7c80229c584e315b (patch) | |
| tree | b3cf918372ca4f5c994459cc3bf94be074aa85fd | |
| parent | 8e8fbeae27e3fbfa80ad59fd2aeb563116e6a4c4 (diff) | |
| download | cpython-git-554b3481fa51f8a8cc18815d7c80229c584e315b.tar.gz | |
#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 8f7fc5cd31..b2381e6d4b 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']``. |
