diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-02-22 02:09:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-21 19:09:30 +0100 |
commit | af93256d05993b53debe0552828b6ae7df521750 (patch) | |
tree | 09ce92cf421b7ad657117d47aeede461a2dd63c3 | |
parent | 06fcfc5c0a2e39f0b723914bb2edb74a99c67bfb (diff) |
fix(cli): capitalize inspect and inspect-brk descriptions (#9567)
-rw-r--r-- | cli/flags.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/flags.rs b/cli/flags.rs index 0ae8de27d..0528a4243 100644 --- a/cli/flags.rs +++ b/cli/flags.rs @@ -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) |