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:
parent
06fcfc5c0a
commit
af93256d05
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue