summaryrefslogtreecommitdiff
path: root/doc
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
commit6c3042ad6f61af8027cf3d4c513d914d9620b896 (patch)
treea100535cc7c1f205882a7cdaf42c394b01d9bf8c /doc
parenta2db5014858f024b6866cf54bb9b09509aca9c18 (diff)
downloadpython-coveragepy-git-6c3042ad6f61af8027cf3d4c513d914d9620b896.tar.gz
Make the text report branch column match the HTML report
Diffstat (limited to 'doc')
-rw-r--r--doc/cmd.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/cmd.rst b/doc/cmd.rst
index cd6ae955..a4657c45 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