summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--array.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0cb37d6696..a92fc73494 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Jan 4 12:42:24 2015 Ayumu AIZAWA <ayumu.aizawa@gmail.com>
+
+ * array.c: improve docs for Array#reject. [ruby-core:65324][misc #10307]
+ Pached by Nebu Pookins.
+
Sun Jan 4 12:24:11 2015 Ayumu AIZAWA <ayumu.aizawa@gmail.com>
* string.c: improve docs for String#strip and variations.
diff --git a/array.c b/array.c
index 08958aeb65..00d2a7f6a8 100644
--- a/array.c
+++ b/array.c
@@ -3150,7 +3150,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
*