1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-03 12:58:54 -05:00

fix(cli): add space after period in --v8-flags (#18063)

Add space between period and "Any" in `--v8-flags` help text.
This commit is contained in:
Caleb Cox 2023-03-07 10:07:28 -06:00 committed by GitHub
parent 76d085ff6a
commit 0e3affcd5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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")
}