summaryrefslogtreecommitdiff
path: root/stdlib/map.mli
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/map.mli')
-rw-r--r--stdlib/map.mli1
1 files changed, 0 insertions, 1 deletions
diff --git a/stdlib/map.mli b/stdlib/map.mli
index 8fb691638d..61a7a8c166 100644
--- a/stdlib/map.mli
+++ b/stdlib/map.mli
@@ -45,7 +45,6 @@ module type S =
val empty: 'a t
(* The empty map. *)
val add: key -> 'a -> 'a t -> 'a t
- val add': key:key -> data:'a -> 'a t -> 'a t
(* [add x y m] 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. *)