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 23, 2023
1 parent 68a7dd7 commit 718e936
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 @@ -1450,7 +1450,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 @@ -1469,7 +1471,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 718e936

Please sign in to comment.