From 91adde97433d0531d9cbcb3595add192ebcc6464 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Fri, 21 Dec 2018 09:44:28 -0600 Subject: [PATCH] minor fix --- src/core/CCResult.mli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/CCResult.mli b/src/core/CCResult.mli index ffd67510..091078b6 100644 --- a/src/core/CCResult.mli +++ b/src/core/CCResult.mli @@ -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.*)