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.", + ), ) }) }