Skip to content

Commit 663cf51

Browse files
authored
gh-101100: Fix Sphinx warning in tutorial/introduction.rst (#111173)
1 parent c9c4a87 commit 663cf51

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Doc/tools/.nitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@ Doc/reference/expressions.rst
140140
Doc/reference/import.rst
141141
Doc/reference/simple_stmts.rst
142142
Doc/tutorial/datastructures.rst
143-
Doc/tutorial/introduction.rst
144143
Doc/using/windows.rst
145144
Doc/whatsnew/2.0.rst
146145
Doc/whatsnew/2.1.rst

Doc/tutorial/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ type, i.e. it is possible to change their content::
428428
[1, 8, 27, 64, 125]
429429

430430
You can also add new items at the end of the list, by using
431-
the :meth:`~list.append` *method* (we will see more about methods later)::
431+
the :meth:`!list.append` *method* (we will see more about methods later)::
432432

433433
>>> cubes.append(216) # add the cube of 6
434434
>>> cubes.append(7 ** 3) # and the cube of 7

0 commit comments

Comments
 (0)