summaryrefslogtreecommitdiff
path: root/coverage/control.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-04-28 23:35:32 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-04-28 23:35:32 -0400
commit06b74ffa1a8b47672e5c948783a60cf21c106742 (patch)
tree5fb256271c92173d7479a4628a6345188857b94f /coverage/control.py
parent078bea34069101a9b94574be20dfad2cd816d2b6 (diff)
downloadpython-coveragepy-git-06b74ffa1a8b47672e5c948783a60cf21c106742.tar.gz
Typo in last docstring.
Diffstat (limited to 'coverage/control.py')
-rw-r--r--coverage/control.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/control.py b/coverage/control.py
index 2ca43447..d03c69b3 100644
--- a/coverage/control.py
+++ b/coverage/control.py
@@ -78,7 +78,7 @@ class coverage:
def exclude(self, regex):
"""Exclude source lines from execution consideration.
- `regex` is a regular expression. Lines matching this expressions are
+ `regex` is a regular expression. Lines matching this expression are
not considered executable when reporting code coverage. A list of
regexes is maintained; this function adds a new regex to the list.
Matching any of the regexes excludes a source line.