diff options
Diffstat (limited to 'coverage')
-rw-r--r-- | coverage/plugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/plugin.py b/coverage/plugin.py index 2f28777a..0efbcba7 100644 --- a/coverage/plugin.py +++ b/coverage/plugin.py @@ -22,8 +22,8 @@ class CoveragePlugin(object): Any plugin can optionally implement :meth:`sys_info` to provide debugging information about their operation. - Coverage.py will store its own information on your plugin object, with - attributes starting with "_coverage_". Don't be startled. + Coverage.py will store its own information on your plugin object, using + attributes whose names start with ``_coverage_``. Don't be startled. To register your plugin, define a function called `coverage_init` in your module:: |