]> granicus.if.org Git - python/commitdiff
Fix small typos in introduction and datastructures of tutorial (GH-272)
authorJim Fasarakis-Hilliard <d.f.hilliard@gmail.com>
Sat, 25 Feb 2017 21:13:33 +0000 (23:13 +0200)
committerMariatta <Mariatta@users.noreply.github.com>
Sat, 25 Feb 2017 21:13:33 +0000 (13:13 -0800)
* Fix small typos in introduction and datastructures
* Use iterable instead of L in the doc for list.extend

Doc/tutorial/datastructures.rst
Doc/tutorial/introduction.rst

index 953a68b44af7bbcc8eb46741ef8f0fca52f19729..6140ece046b9754bc752e673c7f36799afd72959 100644 (file)
@@ -22,11 +22,11 @@ objects:
    Add an item to the end of the list.  Equivalent to ``a[len(a):] = [x]``.
 
 
-.. method:: list.extend(L)
+.. method:: list.extend(iterable)
    :noindex:
 
-   Extend the list by appending all the items in the given list.  Equivalent to
-   ``a[len(a):] = L``.
+   Extend the list by appending all the items from the iterable.  Equivalent to
+   ``a[len(a):] = iterable``.
 
 
 .. method:: list.insert(i, x)
@@ -68,7 +68,7 @@ objects:
 
    The optional arguments *start* and *end* are interpreted as in the slice
    notation and are used to limit the search to a particular subsequence of
-   *x*.  The returned index is computed relative to the beginning of the full
+   the list.  The returned index is computed relative to the beginning of the full
    sequence rather than the *start* argument.
 
 
index 7e8ee3e5ea19bcd1438ac795ffcd64d87d8f78c5..52120a0b16e75f6e53893fc052d002e6df8ea1be 100644 (file)
@@ -359,7 +359,7 @@ The built-in function :func:`len` returns the length of a string::
       Information about string formatting with :meth:`str.format`.
 
    :ref:`old-string-formatting`
-      The old formatting operations invoked when strings and Unicode strings are
+      The old formatting operations invoked when strings are
       the left operand of the ``%`` operator are described in more detail here.