Skip to content

Commit eb52571

Browse files
committed
Tweak docs
1 parent 5384ff0 commit eb52571

6 files changed

+6
-6
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
1010

1111
## [Unreleased]
1212

13-
- Add unstable `--branch` flag to include branch coverage. ([#356](https://github.com/taiki-e/cargo-llvm-cov/pull/356))
13+
- Add unstable `--branch` flag to enable branch coverage. ([#356](https://github.com/taiki-e/cargo-llvm-cov/pull/356))
1414

1515
## [0.6.7] - 2024-03-10
1616

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ OPTIONS:
182182
This flag can only be used together with --json, --lcov, or --cobertura.
183183

184184
--branch
185-
Include branch coverage. (unstable)
185+
Enable branch coverage. (unstable)
186186

187187
--doctests
188188
Including doc tests (unstable)

docs/cargo-llvm-cov-run.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ OPTIONS:
136136
This flag can only be used together with --json, --lcov, or --cobertura.
137137

138138
--branch
139-
Include branch coverage. (unstable)
139+
Enable branch coverage. (unstable)
140140

141141
--ignore-run-fail
142142
Run all tests regardless of failure and generate report

docs/cargo-llvm-cov-test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ OPTIONS:
141141
This flag can only be used together with --json, --lcov, or --cobertura.
142142

143143
--branch
144-
Include branch coverage. (unstable)
144+
Enable branch coverage. (unstable)
145145

146146
--doctests
147147
Including doc tests (unstable)

docs/cargo-llvm-cov.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ OPTIONS:
136136
This flag can only be used together with --json, --lcov, or --cobertura.
137137

138138
--branch
139-
Include branch coverage. (unstable)
139+
Enable branch coverage. (unstable)
140140

141141
--doctests
142142
Including doc tests (unstable)

src/cli.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ pub(crate) struct LlvmCovOptions {
355355
pub(crate) dep_coverage: Option<String>,
356356
/// Skip functions in coverage report.
357357
pub(crate) skip_functions: bool,
358-
/// Include branch coverage. (unstable)
358+
/// Enable branch coverage. (unstable)
359359
pub(crate) branch: bool,
360360
}
361361

0 commit comments

Comments
 (0)