From af2b6caee239df03e6609efeba53471595b44eb7 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Sun, 22 Nov 2015 23:13:08 +0100 Subject: [PATCH] minor formatting --- src/core/CCError.mli | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/CCError.mli b/src/core/CCError.mli index abed8594..8a3d9e0d 100644 --- a/src/core/CCError.mli +++ b/src/core/CCError.mli @@ -145,13 +145,13 @@ val (<*>) : ('a -> 'b, 'err) t -> ('a, 'err) t -> ('b, 'err) t val join : (('a, 'err) t, 'err) t -> ('a, 'err) t (** [join t], in case of success, returns [`Ok o] from [`Ok (`Ok o)]. Otherwise, - it fails with [`Error e] where [e] is the unwrapped error of [t]. + it fails with [`Error e] where [e] is the unwrapped error of [t]. @since NEXT_RELEASE *) val both : ('a, 'err) t -> ('b, 'err) t -> (('a * 'b), 'err) t (** [both a b], in case of success, returns [`Ok (o, o')] with the ok values of [a] and [b]. Otherwise, it fails, and the error of [a] is chosen over the - error of [b] if both fail. + error of [b] if both fail. @since NEXT_RELEASE *) (** {2 Infix}