diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-21 11:40:48 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-21 11:40:48 -0400 |
commit | e173acfd1f687c08ddb945e8c6a34a9b7c3cd124 (patch) | |
tree | c00a6fc6d8e9c7158f7617fac8bb15a981073c5b /coverage/plugin.py | |
parent | a879bf94e14b30f7a88111c646144d01f735cb44 (diff) | |
download | python-coveragepy-git-e173acfd1f687c08ddb945e8c6a34a9b7c3cd124.tar.gz |
Doc tweaks
Diffstat (limited to 'coverage/plugin.py')
-rw-r--r-- | coverage/plugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/plugin.py b/coverage/plugin.py index 0efbcba7..f870c254 100644 --- a/coverage/plugin.py +++ b/coverage/plugin.py @@ -11,7 +11,7 @@ class CoveragePlugin(object): """Base class for coverage.py plugins. To write a coverage.py plugin, create a module with a subclass of - :class:`CoveragePlugin`. You can override methods in your class to + :class:`CoveragePlugin`. You will override methods in your class to participate in various aspects of coverage.py's processing. Currently the only plugin type is a file tracer, for implementing |