···4949end
50505151module Block = struct
5252+ open Odoc_utils (* For Int.max *)
5353+5254 type code_block = { info_string : string option; code : string list }
5355 type list_type = Unordered | Ordered
5456
+5
src/utils/odoc_utils.ml
···6868 let unmarshal fname = with_open_in_bin fname Marshal.from_channel
6969end
70707171+module Int = struct
7272+ include Int
7373+ let max x y : t = if x >= y then x else y
7474+end
7575+7176include Astring