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

index 66faccac2edd87285c0abad2b5afd0a6dadab9ba..162b6927a83d6b2f17621cb8bae49ef38b1c1d58 100644 (file)
@@ -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']``.