]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in introduction.rst (#100266)
authorMikhail Berkov <uhasker@protonmail.com>
Fri, 16 Dec 2022 10:26:30 +0000 (11:26 +0100)
committerGitHub <noreply@github.com>
Fri, 16 Dec 2022 10:26:30 +0000 (15:56 +0530)
Doc/tutorial/introduction.rst

index 558b1c3eec60eded90db469b15dcf17e184448d1..6532a4e2cc83feaa95973259b50133b647107c9b 100644 (file)
@@ -269,7 +269,7 @@ Indices may also be negative numbers, to start counting from the right::
 Note that since -0 is the same as 0, negative indices start from -1.
 
 In addition to indexing, *slicing* is also supported.  While indexing is used
-to obtain individual characters, *slicing* allows you to obtain substring::
+to obtain individual characters, *slicing* allows you to obtain substring::
 
    >>> word[0:2]  # characters from position 0 (included) to 2 (excluded)
    'Py'