From e301b9ea321fce0ccc7f9aff75aa3845e5d589d0 Mon Sep 17 00:00:00 2001 From: chrismamo1 Date: Fri, 25 Sep 2015 12:25:54 -0600 Subject: [PATCH] slightly improved wording in array.mli --- stdlib/array.mli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/array.mli b/stdlib/array.mli index a8f4947ef..b7be5ad40 100644 --- a/stdlib/array.mli +++ b/stdlib/array.mli @@ -142,7 +142,7 @@ val iter : ('a -> unit) -> 'a array -> unit val iteri : (int -> 'a -> unit) -> 'a array -> unit (** Same as {!Array.iter}, but the - function is applied to the index of the element as first argument, + function is applied with the index of the element as first argument, and the element itself as second argument. *) val map : ('a -> 'b) -> 'a array -> 'b array