diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-01-10 21:44:28 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-01-10 21:44:28 -0500 |
commit | 74e7651c2500eb4f39bf8bf8f39c591d20b81fe3 (patch) | |
tree | 353df4587d52a474d2213cf52d70384d2512173b | |
parent | d3a943129ce95a62176cdfed1e4b090f2612a876 (diff) | |
download | python-coveragepy-git-74e7651c2500eb4f39bf8bf8f39c591d20b81fe3.tar.gz |
Wrap some lines better.
-rw-r--r-- | doc/plugins.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/plugins.rst b/doc/plugins.rst index fdc1adfd..f2bad6d4 100644 --- a/doc/plugins.rst +++ b/doc/plugins.rst @@ -12,8 +12,8 @@ Plug-ins .. :history: 20171228T213800, updated for configurer plugins -Coverage.py's behavior can be extended with third-party plug-ins. A plug-in is a -separately installed Python class that you register in your .coveragerc. +Coverage.py's behavior can be extended with third-party plug-ins. A plug-in is +a separately installed Python class that you register in your .coveragerc. Plugins can alter a number of aspects of coverage.py's behavior, including implementing coverage measurement for non-Python files. @@ -36,8 +36,8 @@ a coverage.py plug-in called ``something.plugin``. #. Configure coverage.py to use the plug-in. You do this by editing (or creating) your .coveragerc file, as described in :ref:`config`. The - ``plugins`` setting indicates your plug-in. It's a list of importable module - names of plug-ins:: + ``plugins`` setting indicates your plug-in. It's a list of importable + module names of plug-ins:: [run] plugins = |