]> granicus.if.org Git - python/commitdiff
Issue #23070: Fix a comment in the tutorial.
authorBerker Peksag <berker.peksag@gmail.com>
Wed, 17 Dec 2014 12:56:47 +0000 (14:56 +0200)
committerBerker Peksag <berker.peksag@gmail.com>
Wed, 17 Dec 2014 12:56:47 +0000 (14:56 +0200)
"Python" has 6 characters, not 7.

Reported by Ross Burnett.

Doc/tutorial/introduction.rst

index 9efd1ac8b073137112e14fb4a38e5f2483b66a80..02f4c0a05b42d1ed62fbe0b16484f2f408f3622b 100644 (file)
@@ -305,7 +305,7 @@ indices, if both are within bounds.  For example, the length of ``word[1:3]`` is
 
 Attempting to use a index that is too large will result in an error::
 
-   >>> word[42]  # the word only has 7 characters
+   >>> word[42]  # the word only has 6 characters
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    IndexError: string index out of range