]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-101100: Fix Sphinx warning in `tutorial/introduction.rst` (#111173) 111183/head
authorMaciej Olko <maciej.olko@affirm.com>
Sun, 22 Oct 2023 11:53:17 +0000 (13:53 +0200)
committerGitHub <noreply@github.com>
Sun, 22 Oct 2023 11:53:17 +0000 (14:53 +0300)
Doc/tools/.nitignore
Doc/tutorial/introduction.rst

index 5b21d11271d598b78b6c30f573182db7f2046424..a8c99ee5547b74e919d770b12c8b2ff93d9b790d 100644 (file)
@@ -140,7 +140,6 @@ Doc/reference/expressions.rst
 Doc/reference/import.rst
 Doc/reference/simple_stmts.rst
 Doc/tutorial/datastructures.rst
-Doc/tutorial/introduction.rst
 Doc/using/windows.rst
 Doc/whatsnew/2.0.rst
 Doc/whatsnew/2.1.rst
index 172611dd0cfb41078e09a459a42dc03dbec4fc2e..4536ab9486d39cf0019c5fab6156998efd220976 100644 (file)
@@ -428,7 +428,7 @@ type, i.e. it is possible to change their content::
     [1, 8, 27, 64, 125]
 
 You can also add new items at the end of the list, by using
-the :meth:`~list.append` *method* (we will see more about methods later)::
+the :meth:`!list.append` *method* (we will see more about methods later)::
 
    >>> cubes.append(216)  # add the cube of 6
    >>> cubes.append(7 ** 3)  # and the cube of 7