fix type mismatch

This commit is contained in:
Simon Cruanes 2014-06-25 23:33:30 +02:00
parent 4c613e5857
commit 21316bb89a
2 changed files with 2 additions and 2 deletions

View file

@ -99,7 +99,7 @@ module type S = sig
val of_gen : t -> elt gen -> t
val to_gen : t -> elt gen
val to_tree : t -> elt tree
val to_tree : t -> elt ktree
end
module Make(E : PARTIAL_ORD) = struct

View file

@ -99,7 +99,7 @@ module type S = sig
val of_gen : t -> elt gen -> t
val to_gen : t -> elt gen
val to_tree : t -> elt tree
val to_tree : t -> elt ktree
end
module Make(E : PARTIAL_ORD) : S with type elt = E.t