From 9346d84c3c03c0d143d998668ff1c70153e3eae0 Mon Sep 17 00:00:00 2001 From: Francois BERENGER Date: Tue, 9 Oct 2018 10:03:17 +0900 Subject: [PATCH] rm typo in ocamldoc, due to my previous sed -i --- src/core/CCList.mli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/CCList.mli b/src/core/CCList.mli index 6b68d1c9..b8277b92 100644 --- a/src/core/CCList.mli +++ b/src/core/CCList.mli @@ -86,7 +86,7 @@ val fold_flat_map : ('acc -> 'a -> 'acc * 'b list) -> 'acc -> 'a list -> 'acc * @since 0.14 *) val count : ('a -> bool) -> 'a list -> int -(** [count p l] count_true_false how many elements of [l] satisfy predicate [p]. +(** [count p l] counts how many elements of [l] satisfy predicate [p]. @since 1.5 *) val count_true_false : ('a -> bool) -> 'a list -> int * int