diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-05-28 09:50:54 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-05-28 09:50:54 (GMT) |
commit | 3801f632dcbf5f4f2d0bfe9d5f55cf53da8df5db (patch) | |
tree | 06efb048d8355d0fa1144247119532272df9167f | |
parent | fb1141cd55cc6d4fa1519d76aee8914dc1698545 (diff) | |
parent | fef952a60749477cb612203cd09d208869b6e5e2 (diff) | |
download | cpython-3801f632dcbf5f4f2d0bfe9d5f55cf53da8df5db.zip cpython-3801f632dcbf5f4f2d0bfe9d5f55cf53da8df5db.tar.gz cpython-3801f632dcbf5f4f2d0bfe9d5f55cf53da8df5db.tar.bz2 |
Issue #18079: Fix a typo in the tutorial.
-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 1cd7e0a..36ede2b 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: |