summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2010-10-25 14:46:05 +0200
committerEmile Anclin <emile.anclin@logilab.fr>2010-10-25 14:46:05 +0200
commit173e3131986877a404522291c0bd14c8344c51a5 (patch)
tree809f646c601a6170c9876a40667a2ae66ae40980 /man
parentebd179ecf035d8c4b00ac6bae896c22eedf03fbd (diff)
downloadpylint-173e3131986877a404522291c0bd14c8344c51a5.tar.gz
help / man: more explicit on dummy variable regex
Diffstat (limited to 'man')
-rw-r--r--man/pylint.12
1 files changed, 1 insertions, 1 deletions
diff --git a/man/pylint.1 b/man/pylint.1
index 74f7423..c681755 100644
--- a/man/pylint.1
+++ b/man/pylint.1
@@ -172,7 +172,7 @@ Maximum number of public methods for a class (see R0904). [current: 20]
.IP "--init-import=<y_or_n>"
Tells whether we should check for unused import in __init__ files. [current: no]
.IP "--dummy-variables-rgx=<regexp>"
-A regular expression matching names used for dummy variables (i.e. not used). [current: _|dummy]
+A regular expression matching matching the beginning of the name of dummy variables (i.e. not used). [current: _|dummy]
.IP "--additional-builtins=<comma separated list>"
List of additional names supposed to be defined in builtins. Remember that you should avoid to define new builtins when possible. [current: none]