From: R David Murray Date: Sat, 2 Jun 2012 15:20:29 +0000 (-0400) Subject: #14957: fix doc typo. X-Git-Tag: v3.3.0b1~305^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=554b3481fa51f8a8cc18815d7c80229c584e315b;p=thirdparty%2FPython%2Fcpython.git #14957: fix doc typo. --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 8f7fc5cd312e..b2381e6d4b9e 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']``.