]> granicus.if.org Git - python/commitdiff
#14957: fix doc typo.
authorR David Murray <rdmurray@bitdance.com>
Sat, 2 Jun 2012 15:20:29 +0000 (11:20 -0400)
committerR David Murray <rdmurray@bitdance.com>
Sat, 2 Jun 2012 15:20:29 +0000 (11:20 -0400)
Doc/library/stdtypes.rst

index 8f7fc5cd312e81d40b546c8ae5f6cd9539a78bda..b2381e6d4b9e739177e804d6c908677738d1359c 100644 (file)
@@ -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']``.