From ec69d8c8ab356a40f1593b052b58f860b402da2f Mon Sep 17 00:00:00 2001 From: Caleb Cox Date: Tue, 7 Mar 2023 10:07:28 -0600 Subject: [PATCH] fix(cli): add space after period in `--v8-flags` (#18063) Add space between period and "Any" in `--v8-flags` help text. --- cli/args/flags.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/args/flags.rs b/cli/args/flags.rs index f77b5b1677..f789388697 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") }