From eb5257105df8136d597ecdebbf99c591d23819d2 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 16 Mar 2024 18:28:30 +0900 Subject: [PATCH] Tweak docs --- CHANGELOG.md | 2 +- README.md | 2 +- docs/cargo-llvm-cov-run.txt | 2 +- docs/cargo-llvm-cov-test.txt | 2 +- docs/cargo-llvm-cov.txt | 2 +- src/cli.rs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc1da591..5c9d9723 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index b644eaf1..827368af 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/docs/cargo-llvm-cov-run.txt b/docs/cargo-llvm-cov-run.txt index 14078461..d9798849 100644 --- a/docs/cargo-llvm-cov-run.txt +++ b/docs/cargo-llvm-cov-run.txt @@ -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 diff --git a/docs/cargo-llvm-cov-test.txt b/docs/cargo-llvm-cov-test.txt index 5c93ae15..d472317a 100644 --- a/docs/cargo-llvm-cov-test.txt +++ b/docs/cargo-llvm-cov-test.txt @@ -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) diff --git a/docs/cargo-llvm-cov.txt b/docs/cargo-llvm-cov.txt index 8c8d49f3..e3c4328c 100644 --- a/docs/cargo-llvm-cov.txt +++ b/docs/cargo-llvm-cov.txt @@ -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) diff --git a/src/cli.rs b/src/cli.rs index ccd3473a..451eb0fb 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -355,7 +355,7 @@ pub(crate) struct LlvmCovOptions { pub(crate) dep_coverage: Option, /// Skip functions in coverage report. pub(crate) skip_functions: bool, - /// Include branch coverage. (unstable) + /// Enable branch coverage. (unstable) pub(crate) branch: bool, }