diff options
author | Caleb Cox <canac@users.noreply.github.com> | 2023-03-07 10:07:28 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-07 17:07:28 +0100 |
commit | 0e3affcd5b932e1b1ecc37934a0625a0d4d0d62c (patch) | |
tree | 95e8953f5e8438185e458847cd18edba680b4fd7 /cli | |
parent | 76d085ff6a24a7560658f3502bd65f16fe0a5773 (diff) |
fix(cli): add space after period in `--v8-flags` (#18063)
Add space between period and "Any" in `--v8-flags` help text.
Diffstat (limited to 'cli')
-rw-r--r-- | cli/args/flags.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs index f77b5b167..f78938869 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -2190,7 +2190,7 @@ fn v8_flags_arg<'a>() -> Arg<'a> { .use_value_delimiter(true) .require_equals(true) .help("Set V8 command line options") - .long_help("To see a list of all available flags use --v8-flags=--help.\ + .long_help("To see a list of all available flags use --v8-flags=--help. \ Any flags set with this flag are appended after the DENO_V8_FLAGS environmental variable") } |