summaryrefslogtreecommitdiff
path: root/checkers/variables.py
diff options
context:
space:
mode:
authorMichal Nowikowski <godfryd@gmail.com>2014-11-04 08:08:19 +0100
committerMichal Nowikowski <godfryd@gmail.com>2014-11-04 08:08:19 +0100
commitad731e78eecc677e85bbe80d89a7cdf87fbd7922 (patch)
treed04f0f6ddbdb5acb1f6262a3927ccad9f4ceeb5f /checkers/variables.py
parentf1903892112cf7e8ed588c41484c91b9111bb28b (diff)
downloadpylint-docs-improvements-2.tar.gz
Documentation improvementsdocs-improvements-2
- added intros to features page, - fixed PyLint to Pylint in text, - improved ide-integration doc page, - updated pylintrc in examples and - regenerated pylint manual
Diffstat (limited to 'checkers/variables.py')
-rw-r--r--checkers/variables.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/checkers/variables.py b/checkers/variables.py
index b5ea34f..4420356 100644
--- a/checkers/variables.py
+++ b/checkers/variables.py
@@ -201,7 +201,7 @@ MSGS = {
'W0603': ('Using the global statement', # W0121
'global-statement',
'Used when you use the "global" statement to update a global \
- variable. PyLint just try to discourage this \
+ variable. Pylint just try to discourage this \
usage. That doesn\'t mean you can not use it !'),
'W0604': ('Using the global statement at the module level', # W0103
'global-at-module-level',