From: Serhiy Storchaka Date: Tue, 28 May 2013 09:49:34 +0000 (+0300) Subject: Issue #18079: Fix a typo in the tutorial. X-Git-Tag: v3.4.0a1~623^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fef952a60749477cb612203cd09d208869b6e5e2;p=thirdparty%2FPython%2Fcpython.git Issue #18079: Fix a typo in the tutorial. --- diff --git a/Doc/tutorial/introduction.rst b/Doc/tutorial/introduction.rst index 1cd7e0a71665..36ede2bc8401 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: