change type' to type t

This commit is contained in:
Swrup 2022-04-07 15:24:25 +02:00
parent 82d74ad985
commit 5868601fa1
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
(*type for simple Event *)
type t = type'
type nonrec t = t
end
module Mouse = struct
type t = type'
type nonrec t = t
let latlng e = Latlng.of_jv_t @@ Jv.get e "latlng"
end