Skip to content

Commit f2f89bf

Browse files
[3.12] gh-101100: Fix Sphinx warning in tutorial/introduction.rst (GH-111173) (#111175)
gh-101100: Fix Sphinx warning in `tutorial/introduction.rst` (GH-111173) (cherry picked from commit 663cf51) Co-authored-by: Maciej Olko <[email protected]>
1 parent 028f477 commit f2f89bf

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
@@ -157,7 +157,6 @@ Doc/reference/expressions.rst
157157
Doc/reference/import.rst
158158
Doc/reference/simple_stmts.rst
159159
Doc/tutorial/datastructures.rst
160-
Doc/tutorial/introduction.rst
161160
Doc/using/windows.rst
162161
Doc/whatsnew/2.0.rst
163162
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)