Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jscomp/others/belt_List.mli
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ val tailExn: 'a t -> 'a t

val add: 'a t -> 'a -> 'a t
(**
[add xs y] adds [y] to the end of list [xs]
[add xs y] adds [y] to the beginning of list [xs]

@example{[
add [1] 3 = [3;1];;
Expand Down
2 changes: 1 addition & 1 deletion jscomp/others/belt_MapDict.mli
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ val set:
('a, 'b, 'id) t -> 'a -> 'b ->
cmp:('a, 'id) cmp ->
('a, 'b, 'id) t
(** [add m x y] returns a map containing the same bindings as
(** [set m x y] returns a map containing the same bindings as
[m], plus a binding of [x] to [y]. If [x] was already bound
in [m], its previous binding disappears. *)

Expand Down
2 changes: 1 addition & 1 deletion jscomp/others/belt_MapInt.mli
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ val remove: 'v t -> key -> 'v t
val removeMany: 'v t -> key array -> 'v t

val set: 'v t -> key -> 'v -> 'v t
(** [add m x y] returns a map containing the same bindings as
(** [set m x y] returns a map containing the same bindings as
[m], plus a binding of [x] to [y]. If [x] was already bound
in [m], its previous binding disappears. *)

Expand Down
2 changes: 1 addition & 1 deletion jscomp/others/belt_MapString.mli
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ val remove: 'v t -> key -> 'v t
val removeMany: 'v t -> key array -> 'v t

val set: 'v t -> key -> 'v -> 'v t
(** [add m x y] returns a map containing the same bindings as
(** [set m x y] returns a map containing the same bindings as
[m], plus a binding of [x] to [y]. If [x] was already bound
in [m], its previous binding disappears. *)

Expand Down
2 changes: 1 addition & 1 deletion jscomp/others/belt_MutableMapInt.mli
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ val remove: 'a t -> key -> unit
val removeMany: 'a t -> key array -> unit

val set: 'a t -> key -> 'a -> unit
(** [add m x y] do the in-place modification, return
(** [set m x y] do the in-place modification, return
[m] for chaining. If [x] was already bound
in [m], its previous binding disappears. *)

Expand Down
2 changes: 1 addition & 1 deletion jscomp/others/belt_MutableMapString.mli
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ val remove: 'a t -> key -> unit
val removeMany: 'a t -> key array -> unit

val set: 'a t -> key -> 'a -> unit
(** [add m x y] do the in-place modification, return
(** [set m x y] do the in-place modification, return
[m] for chaining. If [x] was already bound
in [m], its previous binding disappears. *)

Expand Down
2 changes: 1 addition & 1 deletion jscomp/others/map.cppo.mli
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ val remove: 'v t -> key -> 'v t
val removeMany: 'v t -> key array -> 'v t

val set: 'v t -> key -> 'v -> 'v t
(** [add m x y] returns a map containing the same bindings as
(** [set m x y] returns a map containing the same bindings as
[m], plus a binding of [x] to [y]. If [x] was already bound
in [m], its previous binding disappears. *)

Expand Down
2 changes: 1 addition & 1 deletion jscomp/others/mapm.cppo.mli
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ val remove: 'a t -> key -> unit
val removeMany: 'a t -> key array -> unit

val set: 'a t -> key -> 'a -> unit
(** [add m x y] do the in-place modification, return
(** [set m x y] do the in-place modification, return
[m] for chaining. If [x] was already bound
in [m], its previous binding disappears. *)

Expand Down