From d6ae810aaaf3a35d9f947428f3fc22f0d8750073 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 4 Aug 2015 07:30:08 -0400 Subject: Fixing spelling --- coverage/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/parser.py') diff --git a/coverage/parser.py b/coverage/parser.py index a2b1b61..2bdd1bc 100644 --- a/coverage/parser.py +++ b/coverage/parser.py @@ -274,7 +274,7 @@ class PythonParser(CodeParser): # Class definitions have one extra exit, so remove one for each: for l in self.classdefs: - # Ensure key is there: classdefs can include excluded lines. + # Ensure key is there: class definitions can include excluded lines. if l in exit_counts: exit_counts[l] -= 1 -- cgit v1.2.1