Skip to content

Commit

Permalink
Tweak docs
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Mar 16, 2024
1 parent 5384ff0 commit eb52571
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com

## [Unreleased]

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

## [0.6.7] - 2024-03-10

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ OPTIONS:
This flag can only be used together with --json, --lcov, or --cobertura.

--branch
Include branch coverage. (unstable)
Enable branch coverage. (unstable)

--doctests
Including doc tests (unstable)
Expand Down
2 changes: 1 addition & 1 deletion docs/cargo-llvm-cov-run.txt
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ OPTIONS:
This flag can only be used together with --json, --lcov, or --cobertura.

--branch
Include branch coverage. (unstable)
Enable branch coverage. (unstable)

--ignore-run-fail
Run all tests regardless of failure and generate report
Expand Down
2 changes: 1 addition & 1 deletion docs/cargo-llvm-cov-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ OPTIONS:
This flag can only be used together with --json, --lcov, or --cobertura.

--branch
Include branch coverage. (unstable)
Enable branch coverage. (unstable)

--doctests
Including doc tests (unstable)
Expand Down
2 changes: 1 addition & 1 deletion docs/cargo-llvm-cov.txt
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ OPTIONS:
This flag can only be used together with --json, --lcov, or --cobertura.

--branch
Include branch coverage. (unstable)
Enable branch coverage. (unstable)

--doctests
Including doc tests (unstable)
Expand Down
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ pub(crate) struct LlvmCovOptions {
pub(crate) dep_coverage: Option<String>,
/// Skip functions in coverage report.
pub(crate) skip_functions: bool,
/// Include branch coverage. (unstable)
/// Enable branch coverage. (unstable)
pub(crate) branch: bool,
}

Expand Down

0 comments on commit eb52571

Please sign in to comment.