From 646db52f3a986175e93ff5d7eaa43f0953ce9ea5 Mon Sep 17 00:00:00 2001 From: kazu Date: Thu, 18 Jan 2018 12:54:18 +0000 Subject: [DOC] Add `Array#{append,prepend}` to call-seq [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61934 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- array.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/array.c b/array.c index 8a3ec0c8c1..adcee1cce6 100644 --- a/array.c +++ b/array.c @@ -947,6 +947,7 @@ rb_ary_cat(VALUE ary, const VALUE *argv, long len) /* * call-seq: * ary.push(obj, ... ) -> ary + * ary.append(obj, ... ) -> ary * * Append --- Pushes the given object(s) on to the end of this array. This * expression returns the array itself, so several appends @@ -1169,6 +1170,7 @@ ary_ensure_room_for_unshift(VALUE ary, int argc) /* * call-seq: * ary.unshift(obj, ...) -> ary + * ary.prepend(obj, ...) -> ary * * Prepends objects to the front of +self+, moving other elements upwards. * See also Array#shift for the opposite effect. -- cgit v1.2.3