Map: nonsensical documentation of find_opt

Cut and paste causes much damage.  Does anyone proofread documentation?
master
Xavier Leroy 2017-02-18 16:29:39 +01:00
parent f644ab6042
commit 581c8f403b
1 changed files with 2 additions and 2 deletions

View File

@ -233,8 +233,8 @@ module type S =
or raises [Not_found] if no such binding exists. *)
val find_opt: key -> 'a t -> 'a option
(** [find_opt x m] returns the current binding of [x] in [m],
or raises [Not_found] if no such binding exists.
(** [find_opt x m] returns [Some v] if the current binding of [x]
in [m] is [v], or [None] if no such binding exists.
@since 4.05
*)