summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pylint/interfaces.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/interfaces.py b/pylint/interfaces.py
index 0ef8cbb62..eef47449c 100644
--- a/pylint/interfaces.py
+++ b/pylint/interfaces.py
@@ -42,7 +42,7 @@ __all__ = (
Confidence = namedtuple("Confidence", ["name", "description"])
# Warning Certainties
-HIGH = Confidence("HIGH", "No false positive possible.")
+HIGH = Confidence("HIGH", "Warning that is not based on inference result.")
INFERENCE = Confidence("INFERENCE", "Warning based on inference result.")
INFERENCE_FAILURE = Confidence(
"INFERENCE_FAILURE", "Warning based on inference with failures."