[Python-checkins] cpython (merge 3.2 -> default): #14957: fix doc typo.

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


http://hg.python.org/cpython/rev/3bb35ad5d9da
changeset:   77298:3bb35ad5d9da
parent:      77296:4b4044292d09
parent:      77297:4d9b3a58e208
user:        R David Murray <rdmurray at bitdance.com>
date:        Sat Jun 02 11:20:53 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
@@ -1358,7 +1358,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