From eae82b34d49166a4adca8f09b96d75a6414f69a8 Mon Sep 17 00:00:00 2001 From: John Spurlock <47259736+johnspurlock-skymethod@users.noreply.github.com> Date: Fri, 1 Dec 2023 10:26:06 -0600 Subject: [PATCH] Update doc for deno fmt `--no-semicolons` arg. (#21414) Include default, like other bools. --------- Signed-off-by: John Spurlock <47259736+johnspurlock-skymethod@users.noreply.github.com> --- cli/args/flags.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cli/args/flags.rs b/cli/args/flags.rs index 6e79df675f..e027a72b98 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -1654,7 +1654,9 @@ Ignore formatting a file by adding an ignore comment at the top of the file: .value_parser(value_parser!(bool)) .default_missing_value("true") .require_equals(true) - .help("Don't use semicolons except where necessary."), + .help( + "Don't use semicolons except where necessary. Defaults to false.", + ), ) }) }