Skip to content

Commit

Permalink
Update doc for deno fmt --no-semicolons arg. (#21414)
Browse files Browse the repository at this point in the history
Include default, like other bools.

---------

Signed-off-by: John Spurlock <47259736+johnspurlock-skymethod@users.noreply.github.com>
  • Loading branch information
johnspurlock-skymethod committed Dec 1, 2023
1 parent e6e708e commit eae82b3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cli/args/flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
),
)
})
}
Expand Down

0 comments on commit eae82b3

Please sign in to comment.