aboutsummaryrefslogtreecommitdiffstats
path: root/array.c
diff options
context:
space:
mode:
authorayumin <ayumin@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-04 03:45:24 +0000
committerayumin <ayumin@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-01-04 03:45:24 +0000
commitb600ceb898434c80fa7e847e56ce9fe5503a72c8 (patch)
tree6720b4799c1ffa250e6e3e3ff99831483d03b7aa /array.c
parent6abaf7646341c474749baba6de3c321349a5b993 (diff)
downloadruby-b600ceb898434c80fa7e847e56ce9fe5503a72c8.tar.gz
* array.c: improve docs for Array#reject. [ruby-core:65324][misc #10307]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49136 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'array.c')
-rw-r--r--array.c2
1 files changed, 1 insertions, 1 deletions
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
*