Skip to content

Commit d0502a9

Browse files
[3.11] gh-101100: Fix Sphinx warning in tutorial/introduction.rst (GH-111173) (#111176)
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 cf77739 commit d0502a9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Doc/tools/.nitignore

-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@ Doc/reference/expressions.rst
144144
Doc/reference/import.rst
145145
Doc/reference/simple_stmts.rst
146146
Doc/tutorial/datastructures.rst
147-
Doc/tutorial/introduction.rst
148147
Doc/using/windows.rst
149148
Doc/whatsnew/2.0.rst
150149
Doc/whatsnew/2.1.rst

Doc/tutorial/introduction.rst

+1-1
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)