diff options
Diffstat (limited to 'doc/branch.rst')
-rw-r--r-- | doc/branch.rst | 8 |
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:: |