From c76154ce75adbebb461d4cb0a524e6c08b4ed5f7 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 2 Dec 2014 06:25:22 -0500 Subject: Fix english word. --- coverage/files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/files.py') diff --git a/coverage/files.py b/coverage/files.py index 31fe61a..c2a5ec7 100644 --- a/coverage/files.py +++ b/coverage/files.py @@ -209,7 +209,7 @@ class FnmatchMatcher(object): if sys.platform == 'win32': # Windows is also case-insensitive. BTW: the regex docs say that # flags like (?i) have to be at the beginning, but fnmatch puts - # them at the end, and have two there seems to work fine. + # them at the end, and having two there seems to work fine. fnpats = (p + "(?i)" for p in fnpats) self.re = re.compile(join_regex(fnpats)) -- cgit v1.2.1