summaryrefslogtreecommitdiff
path: root/checkers
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
commit5f5fd075db5ba7dbbed1e536dfcb1088ded99fb9 (patch)
treeb3af44ef3b967297069735df89593e2c05c13b9d /checkers
parent064f5e3888f1986d9151250195a6f306ee80d8e8 (diff)
downloadpylint-git-5f5fd075db5ba7dbbed1e536dfcb1088ded99fb9.tar.gz
Documentation improvements
- added intros to features page, - fixed PyLint to Pylint in text, - improved ide-integration doc page, - updated pylintrc in examples and - regenerated pylint manual --HG-- branch : docs-improvements-2
Diffstat (limited to 'checkers')
-rw-r--r--checkers/classes.py4
-rw-r--r--checkers/newstyle.py2
-rw-r--r--checkers/variables.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/checkers/classes.py b/checkers/classes.py
index 3be5bd746..14aa90f2b 100644
--- a/checkers/classes.py
+++ b/checkers/classes.py
@@ -106,7 +106,7 @@ def _is_attribute_property(name, klass):
MSGS = {
'F0202': ('Unable to check methods signature (%s / %s)',
'method-check-failed',
- 'Used when PyLint has been unable to check methods signature \
+ 'Used when Pylint has been unable to check methods signature \
compatibility for an unexpected reason. Please report this kind \
if you don\'t make sense of it.'),
@@ -193,7 +193,7 @@ MSGS = {
),
'F0220': ('failed to resolve interfaces implemented by %s (%s)', # W0224
'unresolved-interface',
- 'Used when a PyLint as failed to find interfaces implemented by \
+ 'Used when a Pylint as failed to find interfaces implemented by \
a class'),
diff --git a/checkers/newstyle.py b/checkers/newstyle.py
index 335b05291..4fae40149 100644
--- a/checkers/newstyle.py
+++ b/checkers/newstyle.py
@@ -43,7 +43,7 @@ MSGS = {
{'maxversion': (3, 0)}),
'W1001': ('Use of "property" on an old style class',
'property-on-old-class',
- 'Used when PyLint detect the use of the builtin "property" \
+ 'Used when Pylint detect the use of the builtin "property" \
on an old style class while this is relying on new style \
classes features.',
{'maxversion': (3, 0)}),
diff --git a/checkers/variables.py b/checkers/variables.py
index b5ea34f48..44203560e 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',