Skip to content

Commit dc83f4a

Browse files
committed
Merge remote-tracking branch 'up/main' into melange-default-alias
2 parents ccff55a + de87591 commit dc83f4a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

otherlibs/stdune/src/table.mli

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,9 @@ val filteri_inplace : ('a, 'b) t -> f:(key:'a -> data:'b -> bool) -> unit
5959
val length : (_, _) t -> int
6060

6161
module Multi : sig
62-
type ('k, 'v) t
62+
type ('k, 'v) t := ('k, 'v list) t
6363

6464
val cons : ('k, 'v) t -> 'k -> 'v -> unit
6565

6666
val find : ('k, 'v) t -> 'k -> 'v list
6767
end
68-
with type ('k, 'v) t := ('k, 'v list) t

otherlibs/stdune/src/type_eq.mli

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ val cast : ('a, 'b) t -> 'a -> 'b
88
at runtime if two identifiers are equal, and if so to get a proof of
99
equality of their types. *)
1010
module Id : sig
11-
type ('a, 'b) eq
11+
type ('a, 'b) eq := ('a, 'b) t
1212

1313
type 'a t
1414

@@ -20,4 +20,3 @@ module Id : sig
2020

2121
val same : 'a t -> 'b t -> ('a, 'b) eq option
2222
end
23-
with type ('a, 'b) eq := ('a, 'b) t

0 commit comments

Comments
 (0)