summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2023-03-15 05:44:14 -0400
committerNed Batchelder <ned@nedbatchelder.com>2023-03-15 05:44:31 -0400
commitdd7959dbf4eede4d2f2254f607113e45071cc8d3 (patch)
tree6cc46b1e46442e0cc2a2929662d51bfe52280403
parentf95ce970a7870e636105cf6f9193701760d3135f (diff)
downloadpython-coveragepy-git-dd7959dbf4eede4d2f2254f607113e45071cc8d3.tar.gz
docs: wrap long lines
-rw-r--r--CHANGES.rst6
-rw-r--r--doc/changes.rst7
2 files changed, 7 insertions, 6 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 1e549eea..74f2d4bc 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -24,9 +24,9 @@ Unreleased
LF (lines found) and LH (lines hit) totals. This is now fixed, thanks to
`Ian Moore <pull 1583_>`_.
-- Fix: the ``coverage xml`` command on Windows could create a .xml file with duplicate
- ``<package>`` elements. This is now fixed, thanks to `Benjamin Parzella <pull
- 1574_>`_, closing `issue 1573`_.
+- Fix: the ``coverage xml`` command on Windows could create a .xml file with
+ duplicate ``<package>`` elements. This is now fixed, thanks to `Benjamin
+ Parzella <pull 1574_>`_, closing `issue 1573`_.
.. _issue 1573: https://github.com/nedbat/coveragepy/issues/1573
.. _pull 1574: https://github.com/nedbat/coveragepy/pull/1574
diff --git a/doc/changes.rst b/doc/changes.rst
index 7f2df618..54a3c81b 100644
--- a/doc/changes.rst
+++ b/doc/changes.rst
@@ -2234,9 +2234,10 @@ Version 3.4 — 2010-09-19
Version 3.4b2 — 2010-09-06
--------------------------
-- Completely un-executed files can now be included in coverage results, reported
- as 0% covered. This only happens if the --source option is specified, since
- coverage.py needs guidance about where to look for source files.
+- Completely un-executed files can now be included in coverage results,
+ reported as 0% covered. This only happens if the --source option is
+ specified, since coverage.py needs guidance about where to look for source
+ files.
- The XML report output now properly includes a percentage for branch coverage,
fixing `issue 65`_ and `issue 81`_.