summaryrefslogtreecommitdiff
path: root/doc/branch.rst
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-07-25 19:28:51 -0400
committerNed Batchelder <ned@nedbatchelder.com>2010-07-25 19:28:51 -0400
commit5d1fb03bf3c3eb4f511289e0728f37a183296d4a (patch)
tree9ed44e010aab9eb94d5180f3e76c821ce0367ee2 /doc/branch.rst
parenta50136c79ca31513098c3d81ef89d6071fe01ae7 (diff)
downloadpython-coveragepy-git-5d1fb03bf3c3eb4f511289e0728f37a183296d4a.tar.gz
Lots of doc updates, more to come.
Diffstat (limited to 'doc/branch.rst')
-rw-r--r--doc/branch.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/branch.rst b/doc/branch.rst
index 71681317..8f1583a1 100644
--- a/doc/branch.rst
+++ b/doc/branch.rst
@@ -10,10 +10,10 @@ Branch coverage measurement
:linenothreshold: 5
-Coverage.py now supports branch coverage measurement. Where a line in your
-program could jump to more than one next line, coverage.py tracks which of
-those destinations are actually visited, and flags lines that haven't visited
-all of their possible destinations.
+In addition to the usual statement coverage, Coverage.py also supports branch
+coverage measurement. Where a line in your program could jump to more than one
+next line, coverage.py tracks which of those destinations are actually visited,
+and flags lines that haven't visited all of their possible destinations.
For example::