summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorSylvain <syt@logilab.fr>2008-02-07 09:56:27 +0100
committerSylvain <syt@logilab.fr>2008-02-07 09:56:27 +0100
commit4bd5f357ea92a39cb15cc6cc56b676e9e1ea81d9 (patch)
treee56dad23c4a9f9f86038a297dbb06b6471faf9fc /examples
parent585b7096dc558250f58362d79ba369c541e3a6d3 (diff)
downloadpylint-4bd5f357ea92a39cb15cc6cc56b676e9e1ea81d9.tar.gz
makefile fix
Diffstat (limited to 'examples')
-rw-r--r--examples/pylintrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/pylintrc b/examples/pylintrc
index 56b0791..f674e19 100644
--- a/examples/pylintrc
+++ b/examples/pylintrc
@@ -1,6 +1,6 @@
# lint Python modules using external checkers.
#
-# This is the main checker controling the other ones and the reports
+# This is the main checker controlling the other ones and the reports
# generation. It is itself both a raw checker and an astng checker in order
# to:
# * handle message activation / deactivation at the module level
@@ -58,7 +58,7 @@ load-plugins=
[REPORTS]
-# set the output format. Available formats are text, parseable, colorized, msvs
+# Set the output format. Available formats are text, parseable, colorized, msvs
# (visual studio) and html
output-format=text
@@ -74,7 +74,7 @@ files-output=no
reports=yes
# Python expression which should return a note less than 10 (10 is the highest
-# note).You have access to the variables errors warning, statement which
+# note). You have access to the variables errors warning, statement which
# respectivly contain the number of errors / warnings messages and the total
# number of statements analyzed. This is used by the global evaluation report
# (R0004).