Skip to content

Commit

Permalink
lib_lwt_result/ocaml: Add injectivity annotations
Browse files Browse the repository at this point in the history
See ocaml/ocaml#9500 for the introduction of
the breaking change within OCaml.
  • Loading branch information
lthms committed Jun 9, 2021
1 parent 707c223 commit 2bddf9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/lib_lwt_result_stdlib/bare/functor_outputs/hashtbl.ml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
module type S = sig
type key

type 'a t
type !'a t

module Legacy : Stdlib.Hashtbl.S with type key = key and type 'a t = 'a t

Expand Down Expand Up @@ -123,7 +123,7 @@ end
module type SeededS = sig
type key

type 'a t
type !'a t

module Legacy :
Stdlib.Hashtbl.SeededS with type key = key and type 'a t = 'a t
Expand Down
2 changes: 1 addition & 1 deletion src/lib_lwt_result_stdlib/bare/functor_outputs/map.ml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
module type S = sig
type key

type +'a t
type +!'a t

module Legacy : Stdlib.Map.S with type key = key and type 'a t = 'a t

Expand Down

0 comments on commit 2bddf9f

Please sign in to comment.