From 55ef50dd551008d513e2adbb39db67dd7b9ffe86 Mon Sep 17 00:00:00 2001 From: Nebu Pookins Date: Wed, 17 Sep 2014 12:33:56 -0700 Subject: [PATCH] Add doc for Array.reject, it maintains ordering --- array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/array.c b/array.c index 17b9f9d..4e6719c 100644 --- a/array.c +++ b/array.c @@ -3157,7 +3157,7 @@ rb_ary_reject_bang(VALUE ary) * ary.reject -> Enumerator * * Returns a new array containing the items in +self+ for which the given - * block is not +true+. + * block is not +true+. The ordering of non-rejected elements is maintained. * * See also Array#delete_if *