summaryrefslogtreecommitdiff
path: root/doc/development_guide
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-05-22 19:22:26 +0200
committerGitHub <noreply@github.com>2022-05-22 19:22:26 +0200
commitd11bfec689c4bf4e327c8838448844aa453f6ee6 (patch)
tree67d100ee7bb10a153cd08753f1d08bc044147d20 /doc/development_guide
parente5e4b213f163f7a55474db5dcb83bd8d5304fbba (diff)
downloadpylint-git-d11bfec689c4bf4e327c8838448844aa453f6ee6.tar.gz
[doc] Activate the nitpicky option in sphinx build (#6650)
This will warn about all missing references * Remove references that don't work Co-authored-by: Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>
Diffstat (limited to 'doc/development_guide')
-rw-r--r--doc/development_guide/contribute.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/development_guide/contribute.rst b/doc/development_guide/contribute.rst
index 328f86b1b..b09414a12 100644
--- a/doc/development_guide/contribute.rst
+++ b/doc/development_guide/contribute.rst
@@ -71,9 +71,9 @@ Tips for Getting Started with Pylint Development
codebase and will help you identify where you will need to make changes
for what you are trying to implement.
-* :func:`astroid.extract_node` is your friend. Most checkers are AST based,
- so you will likely need to interact with :mod:`astroid`.
- A short example of how to use :func:`astroid.extract_node` is given
+* ``astroid.extract_node`` is your friend. Most checkers are AST based,
+ so you will likely need to interact with ``astroid``.
+ A short example of how to use ``astroid.extract_node`` is given
:ref:`here <astroid_extract_node>`.
* When fixing a bug for a specific check, search the code for the warning