summaryrefslogtreecommitdiff
path: root/Doc/tutorial/datastructures.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/tutorial/datastructures.rst')
-rw-r--r--Doc/tutorial/datastructures.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst
index 953a68b44a..6140ece046 100644
--- a/Doc/tutorial/datastructures.rst
+++ b/Doc/tutorial/datastructures.rst
@@ -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.