summaryrefslogtreecommitdiff
path: root/pylint/extensions/comparetozero.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/extensions/comparetozero.py')
-rw-r--r--pylint/extensions/comparetozero.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/extensions/comparetozero.py b/pylint/extensions/comparetozero.py
index ced62f0a6..e543f1ccf 100644
--- a/pylint/extensions/comparetozero.py
+++ b/pylint/extensions/comparetozero.py
@@ -28,7 +28,7 @@ def _is_constant_zero(node):
class CompareToZeroChecker(checkers.BaseChecker):
"""Checks for comparisons to zero.
- Most of the times you should use the fact that integers with a value of 0 are false.
+ Most of the time you should use the fact that integers with a value of 0 are false.
An exception to this rule is when 0 is allowed in the program and has a
different meaning than None!
"""