Skip to content

Commit

Permalink
Fix too long lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Halbaroth committed Aug 21, 2023
1 parent 6f5ee8f commit ae205e2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/bin/common/parse_command.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1436,7 +1436,9 @@ let parse_fmt_opt =
models and unsat cores. Possible values are %s."
(Arg.doc_alts ["stdout"; "stderr"; "<filename>"])
in
let deprecated = "this option is deprecated. Please use --regular-output." in
let deprecated =
"this option is deprecated. Please use --regular-output."
in
let regular_output =
Arg.(value & opt (some' string) None & info ["regular-output"] ~docs
~doc ~docv)
Expand All @@ -1455,7 +1457,9 @@ let parse_fmt_opt =
warning informations. Possible values are %s."
(Arg.doc_alts ["stdout"; "stderr"; "<filename>"])
in
let deprecated = "this option is deprecated. Please use --diagnostic-output." in
let deprecated =
"this option is deprecated. Please use --diagnostic-output."
in
let diagnostic_output =
Arg.(value & opt (some' string) None & info ["diagnostic-output"] ~docs
~doc ~docv)
Expand Down

0 comments on commit ae205e2

Please sign in to comment.