Skip to content

Commit 92815cc

Browse files
authored
Resolve reference warnings in faq/design.rst (#108148)
1 parent f904aa4 commit 92815cc

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Doc/faq/design.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -584,9 +584,9 @@ exhaustive test suites that exercise every line of code in a module.
584584
An appropriate testing discipline can help build large complex applications in
585585
Python as well as having interface specifications would. In fact, it can be
586586
better because an interface specification cannot test certain properties of a
587-
program. For example, the :meth:`list.append` method is expected to add new elements
587+
program. For example, the :meth:`!list.append` method is expected to add new elements
588588
to the end of some internal list; an interface specification cannot test that
589-
your :meth:`list.append` implementation will actually do this correctly, but it's
589+
your :meth:`!list.append` implementation will actually do this correctly, but it's
590590
trivial to check this property in a test suite.
591591

592592
Writing test suites is very helpful, and you might want to design your code to

Doc/tools/.nitignore

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ Doc/c-api/typeobj.rst
2424
Doc/c-api/unicode.rst
2525
Doc/extending/extending.rst
2626
Doc/extending/newtypes.rst
27-
Doc/faq/design.rst
2827
Doc/faq/gui.rst
2928
Doc/faq/library.rst
3029
Doc/glossary.rst

0 commit comments

Comments
 (0)