gh-101100: Fix Sphinx warning in tutorial/introduction.rst (#111173)

This commit is contained in:
Maciej Olko 2023-10-22 13:53:17 +02:00 committed by GitHub
parent c9c4a87f5d
commit 663cf513b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View 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