0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00

doc: improve coverage CLI help text (#11646)

Co-authored-by: Casper Beyer <caspervonb@pm.me>
This commit is contained in:
Chris Knight 2021-08-12 09:21:38 +01:00 committed by GitHub
parent 3197cad0f8
commit bb6473f3c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1090,9 +1090,10 @@ fn test_subcommand<'a, 'b>() -> App<'a, 'b> {
.long("coverage")
.require_equals(true)
.takes_value(true)
.value_name("DIR")
.conflicts_with("inspect")
.conflicts_with("inspect-brk")
.help("UNSTABLE: Collect coverage profile data"),
.help("UNSTABLE: Collect coverage profile data into DIR"),
)
.arg(
Arg::with_name("jobs")