[Python-checkins] cpython (2.7): #14957: fix doc typo.

r.david.murray python-checkins at python.org
Sat Jun 2 17:21:49 CEST 2012


http://hg.python.org/cpython/rev/48564362b687
changeset:   77299:48564362b687
branch:      2.7
parent:      77292:2fbee0b741f7
user:        R David Murray <rdmurray at bitdance.com>
date:        Sat Jun 02 11:21:31 2012 -0400
summary:
  #14957: fix doc typo.

files:
  Doc/library/stdtypes.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -1190,7 +1190,7 @@
    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']``.
 
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list