minor fix

This commit is contained in:
Simon Cruanes 2018-12-21 09:44:28 -06:00
parent 23d7ea20f6
commit 91adde9743

View file

@ -188,7 +188,7 @@ end
(** {2 Collections} *)
val map_l : ('a -> ('b, 'err) t) -> 'a list -> ('b list, 'err) t
(** [map_l f \[a1; ...; an\]] applies function f to a1, ..., an , and, in case of
(** [map_l f [a1; ...; an]] applies function f to a1, ..., an , and, in case of
success for every elements, return the list of [Ok]-value.
Otherwise, it fails and return the first error encountered. Tail-recursive.*)