diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-12-02 06:25:22 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-12-02 06:25:22 -0500 |
commit | 24e2488c36e4d19fd9eb06a5b03cd92821b4f2bd (patch) | |
tree | a055695643dccbb7fa2d3444f74c7a4e6766fe53 /coverage | |
parent | 9b13e82613ed9ac8efb678058c9303f025e55853 (diff) | |
download | python-coveragepy-git-24e2488c36e4d19fd9eb06a5b03cd92821b4f2bd.tar.gz |
Fix english word.
Diffstat (limited to 'coverage')
-rw-r--r-- | coverage/files.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/files.py b/coverage/files.py index 31fe61a2..c2a5ec72 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)) |