summaryrefslogtreecommitdiff
path: root/doc/development_guide
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2023-01-21 05:03:40 -0500
committerGitHub <noreply@github.com>2023-01-21 11:03:40 +0100
commitf1d7706db6b8b6515332865c4056fec54591cff7 (patch)
treed6c95cb8d91df39765eed8f8f621bbc49c12d285 /doc/development_guide
parent01cd57b15f68e7ab1d8fb318f969a13680d16042 (diff)
downloadpylint-git-f1d7706db6b8b6515332865c4056fec54591cff7.tar.gz
docs: fix typo (#8092)
Diffstat (limited to 'doc/development_guide')
-rw-r--r--doc/development_guide/how_tos/custom_checkers.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development_guide/how_tos/custom_checkers.rst b/doc/development_guide/how_tos/custom_checkers.rst
index 6d36b0ec6..3cbf81c83 100644
--- a/doc/development_guide/how_tos/custom_checkers.rst
+++ b/doc/development_guide/how_tos/custom_checkers.rst
@@ -128,7 +128,7 @@ which is called with an ``.astroid.nodes.Return`` node.
.. TODO We can shorten/remove this bit once astroid has API docs.
We'll need to be able to figure out what attributes an
-``.astroid.nodes.Return` node has available.
+``.astroid.nodes.Return`` node has available.
We can use ``astroid.extract_node`` for this::
>>> node = astroid.extract_node("return 5")