From e3376bd21aa928ce1b004eb9af70a545cfb827c6 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Sun, 2 Aug 2015 21:37:26 +0200 Subject: [PATCH] fix doc --- src/core/CCString.mli | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/core/CCString.mli b/src/core/CCString.mli index e4954971..d3272145 100644 --- a/src/core/CCString.mli +++ b/src/core/CCString.mli @@ -226,32 +226,32 @@ include S with type t := string val map2 : (char -> char -> char) -> string -> string -> string (** map pairs of chars - @raises Invalid_argument if the strings have not the same length + @raise Invalid_argument if the strings have not the same length @since 0.12 *) val iter2: (char -> char -> unit) -> string -> string -> unit (** iterate on pairs of chars - @raises Invalid_argument if the strings have not the same length + @raise Invalid_argument if the strings have not the same length @since 0.12 *) val iteri2: (int -> char -> char -> unit) -> string -> string -> unit (** iterate on pairs of chars with their index - @raises Invalid_argument if the strings have not the same length + @raise Invalid_argument if the strings have not the same length @since 0.12 *) val fold2: ('a -> char -> char -> 'a) -> 'a -> string -> string -> 'a (** fold on pairs of chars - @raises Invalid_argument if the strings have not the same length + @raise Invalid_argument if the strings have not the same length @since 0.12 *) val for_all2 : (char -> char -> bool) -> string -> string -> bool (** all pair of chars respect the predicate? - @raises Invalid_argument if the strings have not the same length + @raise Invalid_argument if the strings have not the same length @since 0.12 *) val exists2 : (char -> char -> bool) -> string -> string -> bool (** exists a pair of chars? - @raises Invalid_argument if the strings have not the same length + @raise Invalid_argument if the strings have not the same length @since 0.12 *) (** {2 Splitting} *)