summaryrefslogtreecommitdiff
path: root/doc/how_tos/custom_checkers.rst
diff options
context:
space:
mode:
authorTushar Sadhwani <tushar.sadhwani000@gmail.com>2021-10-30 01:15:52 +0530
committerGitHub <noreply@github.com>2021-10-29 21:45:52 +0200
commit76a7553066130a7dbf4d10922b2530161b2ec5b0 (patch)
tree83859664ce32f86b56a2ff7cca92dc14d35241cc /doc/how_tos/custom_checkers.rst
parent8c7e2fae6fee28944764e643e65e729a58a5473c (diff)
downloadpylint-git-76a7553066130a7dbf4d10922b2530161b2ec5b0.tar.gz
Unify all `<y or n>` metavars in option's help (#5229)
* Unify all `<y or n>` metavars
Diffstat (limited to 'doc/how_tos/custom_checkers.rst')
-rw-r--r--doc/how_tos/custom_checkers.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/how_tos/custom_checkers.rst b/doc/how_tos/custom_checkers.rst
index 7a454c4f5..6cded973b 100644
--- a/doc/how_tos/custom_checkers.rst
+++ b/doc/how_tos/custom_checkers.rst
@@ -58,7 +58,7 @@ Firstly we will need to fill in some required boilerplate:
(
'ignore-ints',
{
- 'default': False, 'type': 'yn', 'metavar' : '<y_or_n>',
+ 'default': False, 'type': 'yn', 'metavar' : '<y or n>',
'help': 'Allow returning non-unique integers',
}
),