change type' to type t

This commit is contained in:
Swrup 2022-04-07 15:24:25 +02:00
parent 982a1f295b
commit 2004c6ff60
2 changed files with 4 additions and 4 deletions

View file

@ -1,12 +1,12 @@
type type' = Jv.t type t = Jv.t
module Event = struct module Event = struct
(*type for simple Event *) (*type for simple Event *)
type t = type' type nonrec t = t
end end
module Mouse = struct module Mouse = struct
type t = type' type nonrec t = t
let latlng e = Latlng.of_jv_t @@ Jv.get e "latlng" let latlng e = Latlng.of_jv_t @@ Jv.get e "latlng"
end end

View file

@ -1,4 +1,4 @@
type type' type t
module Event : sig module Event : sig
type t type t