From: R David Murray <rdmurray@bitdance.com>
Date: Sat, 2 Jun 2012 15:21:31 +0000 (-0400)
Subject: #14957: fix doc typo.
X-Git-Tag: v2.7.4rc1~776
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=de738a1b82a27010778b30b66258bd206b7c9c1e;p=python

#14957: fix doc typo.
---

diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 66faccac2e..162b6927a8 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -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']``.