Skip to content

Commit 4e000e9

Browse files
committed
try to make work on ocaml 5.1.0 : don't work
1 parent 99484ca commit 4e000e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/odoc_wiki/odoc_import.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ let string_of_type_param_list ?margin t =
9393
(if par then "(" else "")
9494
(raw_string_of_type_list ?margin ", "
9595
(List.map
96-
(fun (typ, co, cn) -> (Odoc_str.string_of_variance t (co, cn), typ))
96+
(fun (typ, v) -> (Odoc_str.string_of_variance t v, typ))
9797
t.Odoc_type.ty_parameters
9898
)
9999
)

wikidoc.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ remove: [
1818
[ "rm" "-f" "%{bin}%/latex_of_wiki" ]
1919
]
2020
depends: [
21-
"ocaml" {>= "4.14.0" & < "5.1.0"}
21+
"ocaml" {> "5.1.0" }
2222
"base-threads"
2323
"base-unix"
2424
"ocamlfind"

0 commit comments

Comments
 (0)