Skip to content

Commit a46d23c

Browse files
committed
Fix incorrect odoc documentation syntax usage
1 parent 3838b75 commit a46d23c

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/smtml/expr_intf.ml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -554,11 +554,15 @@ module type S = sig
554554
module F64 : Constructors_intf.Infix with type elt := float and type t := t
555555
end
556556

557-
(** {1. Simplifications bis } *)
557+
(** {1 Simplifications bis} *)
558558

559-
(** [split_conjunctions e] when [e] is ((P & Q) & R) is { P; Q; R }. That is, it splits an expressions into a set of subformulas whose conjunctions is equivalent to the original expression. *)
559+
(** [split_conjunctions e] when [e] is ((P & Q) & R) is [{ P; Q; R }]. That
560+
is, it splits an expressions into a set of subformulas whose conjunctions
561+
is equivalent to the original expression. *)
560562
val split_conjunctions : t -> Set.t
561563

562-
(** [split_disjunctions e] when [e] is ((P || Q) || R) is { P; Q; R } That is, it splits an expressions into a set of subformulas whose disjunctions is equivalent to the original expression.*)
564+
(** [split_disjunctions e] when [e] is ((P || Q) || R) is [{ P; Q; R }] That
565+
is, it splits an expressions into a set of subformulas whose disjunctions
566+
is equivalent to the original expression.*)
563567
val split_disjunctions : t -> Set.t
564568
end

0 commit comments

Comments
 (0)