1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00

fix(cli): capitalize inspect and inspect-brk descriptions (#9567)

This commit is contained in:
Casper Beyer 2021-02-22 02:09:30 +08:00 committed by GitHub
parent 06fcfc5c0a
commit af93256d05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1508,7 +1508,7 @@ fn inspect_args<'a, 'b>(app: App<'a, 'b>) -> App<'a, 'b> {
Arg::with_name("inspect")
.long("inspect")
.value_name("HOST:PORT")
.help("activate inspector on host:port (default: 127.0.0.1:9229)")
.help("Activate inspector on host:port (default: 127.0.0.1:9229)")
.min_values(0)
.max_values(1)
.require_equals(true)
@ -1520,7 +1520,7 @@ fn inspect_args<'a, 'b>(app: App<'a, 'b>) -> App<'a, 'b> {
.long("inspect-brk")
.value_name("HOST:PORT")
.help(
"activate inspector on host:port and break at start of user script",
"Activate inspector on host:port and break at start of user script",
)
.min_values(0)
.max_values(1)