diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2013-05-28 12:49:34 +0300 |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-05-28 12:49:34 +0300 |
| commit | fef952a60749477cb612203cd09d208869b6e5e2 (patch) | |
| tree | 09d3d561f3fed0de115d40d0049ddbe468e72c41 /Doc/tutorial/introduction.rst | |
| parent | b501b565c6b5eaf5db9a6edf0258ac8b6ba9a532 (diff) | |
| download | cpython-git-fef952a60749477cb612203cd09d208869b6e5e2.tar.gz | |
Issue #18079: Fix a typo in the tutorial.
Diffstat (limited to 'Doc/tutorial/introduction.rst')
| -rw-r--r-- | Doc/tutorial/introduction.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index 1cd7e0a716..36ede2bc84 100644 --- a/Doc/tutorial/introduction.rst +++ b/Doc/tutorial/introduction.rst @@ -447,9 +447,9 @@ example:: >>> x = [a, n] >>> x [['a', 'b', 'c'], [1, 2, 3]] - >>> p[0] + >>> x[0] ['a', 'b', 'c'] - >>> p[0][1] + >>> x[0][1] 'b' .. _tut-firststeps: |
