Fix small typos in introduction and datastructures of tutorial (GH-272) (GH-297)

(cherry picked from commit 53c1892dc3)
This commit is contained in:
Mariatta 2017-02-25 22:34:51 -08:00 committed by GitHub
parent 1a8dd944d4
commit b00232842c
2 changed files with 5 additions and 5 deletions

View file

@ -22,11 +22,11 @@ objects:
Add an item to the end of the list. Equivalent to ``a[len(a):] = [x]``. Add an item to the end of the list. Equivalent to ``a[len(a):] = [x]``.
.. method:: list.extend(L) .. method:: list.extend(iterable)
:noindex: :noindex:
Extend the list by appending all the items in the given list. Equivalent to Extend the list by appending all the items from the iterable. Equivalent to
``a[len(a):] = L``. ``a[len(a):] = iterable``.
.. method:: list.insert(i, x) .. method:: list.insert(i, x)
@ -68,7 +68,7 @@ objects:
The optional arguments *start* and *end* are interpreted as in the slice 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 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. sequence rather than the *start* argument.

View 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`. Information about string formatting with :meth:`str.format`.
:ref:`old-string-formatting` :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. the left operand of the ``%`` operator are described in more detail here.