Skip to content

Commit eb82d50

Browse files
committed
Formatting
1 parent a88ffdc commit eb82d50

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/model/error.mli

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ val catch_errors_and_warnings : (unit -> 'a) -> 'a with_errors_and_warnings
4141
type warnings_options = {
4242
warn_error : bool; (** If [true], warnings will result in an error. *)
4343
print_warnings : bool; (** Whether to print warnings. *)
44-
warnings_tag : string option; (** Whether to tag references to filter them later. *)
44+
warnings_tag : string option;
45+
(** Whether to tag references to filter them later. *)
4546
}
4647

4748
val handle_warnings :

src/odoc/bin/main.ml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,8 @@ end = struct
713713

714714
let warnings_tags =
715715
let doc =
716-
"Filter warnings that were compiled with a tag that is not in the list of --warnings-tags passed."
716+
"Filter warnings that were compiled with a tag that is not in the list \
717+
of --warnings-tags passed."
717718
in
718719
let env = Arg.env_var "ODOC_WARNINGS_TAGS" ~doc in
719720
Arg.(value & opt_all string [] & info ~docs ~doc ~env [ "warnings-tags" ])

0 commit comments

Comments
 (0)