Skip to content

Commit

Permalink
Update description
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Aug 9, 2021
1 parent b0db499 commit 6c6a2fb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["cargo", "coverage", "subcommand", "testing"]
categories = ["command-line-utilities", "development-tools", "development-tools::cargo-plugins", "development-tools::testing"]
exclude = ["/.*", "/tools"]
description = """
Wrapper for source-based code coverage (-Z instrument-coverage).
Cargo subcommand for LLVM source-based code coverage (-Z instrument-coverage).
"""

[package.metadata.docs.rs]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![rustc](https://img.shields.io/badge/rustc-stable-blue?style=flat-square&logo=rust)](https://www.rust-lang.org)
[![build status](https://img.shields.io/github/workflow/status/taiki-e/cargo-llvm-cov/CI/main?style=flat-square&logo=github)](https://github.com/taiki-e/cargo-llvm-cov/actions)

Wrapper for source-based code coverage ([-Z instrument-coverage][instrument-coverage], [rust-lang/rust#79121]).
Cargo subcommand for LLVM source-based code coverage ([-Z instrument-coverage][instrument-coverage], [rust-lang/rust#79121]).

- [Installation](#installation)
- [Usage](#usage)
Expand Down Expand Up @@ -62,7 +62,7 @@ brew install taiki-e/tap/cargo-llvm-cov
```console
$ cargo llvm-cov --help
cargo-llvm-cov
Wrapper for source-based code coverage (-Z instrument-coverage).
Cargo subcommand for LLVM source-based code coverage (-Z instrument-coverage).

Use -h for short descriptions and --help for more details.

Expand Down
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pub(crate) fn from_args() -> Result<Args> {
Ok(args)
}

const ABOUT: &str = "Wrapper for source-based code coverage (-Z instrument-coverage).
const ABOUT: &str = "Cargo subcommand for LLVM source-based code coverage (-Z instrument-coverage).
Use -h for short descriptions and --help for more details.";

Expand Down
2 changes: 1 addition & 1 deletion tests/long-help.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cargo-llvm-cov
Wrapper for source-based code coverage (-Z instrument-coverage).
Cargo subcommand for LLVM source-based code coverage (-Z instrument-coverage).

Use -h for short descriptions and --help for more details.

Expand Down
2 changes: 1 addition & 1 deletion tests/short-help.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cargo-llvm-cov
Wrapper for source-based code coverage (-Z instrument-coverage).
Cargo subcommand for LLVM source-based code coverage (-Z instrument-coverage).

Use -h for short descriptions and --help for more details.

Expand Down

0 comments on commit 6c6a2fb

Please sign in to comment.