summaryrefslogtreecommitdiff
path: root/doc/cmd.rst
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-10-20 22:31:12 -0400
committerNed Batchelder <ned@nedbatchelder.com>2014-10-20 22:31:12 -0400
commit6fc10248ef78842f2e2b943eb79daa0525fb75fc (patch)
treec4e21ac5583e38b7446f33c1943a4667ba35ef3d /doc/cmd.rst
parentd231baa0d857da20e43e99554adcbd24294876a1 (diff)
downloadpython-coveragepy-6fc10248ef78842f2e2b943eb79daa0525fb75fc.tar.gz
Make the text report branch column match the HTML report
Diffstat (limited to 'doc/cmd.rst')
-rw-r--r--doc/cmd.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/cmd.rst b/doc/cmd.rst
index cd6ae95..a4657c4 100644
--- a/doc/cmd.rst
+++ b/doc/cmd.rst
@@ -276,11 +276,11 @@ The ``-m`` flag also shows the line numbers of missing statements::
TOTAL 91 12 87%
If you are using branch coverage, then branch statistics will be reported in
-the Branch and BrMiss columns, the Missing column will detail the missed
-branches::
+the Branch and BrPart (for Partial Branch) columns, the Missing column will
+detail the missed branches::
$ coverage report -m
- Name Stmts Miss Branch BrMiss Cover Missing
+ Name Stmts Miss Branch BrPart Cover Missing
---------------------------------------------------------------------
my_program 20 4 10 2 80% 33-35, 36->38, 39
my_module 15 2 3 0 86% 8, 12