From 00ecebe6a97fd3a77a54f4bc4959ca0cb570f005 Mon Sep 17 00:00:00 2001 From: zzak Date: Wed, 24 Apr 2013 03:28:06 +0000 Subject: * array.c: Fix documentation for Array#index and #replace aliases Based on a patch by @phiggins [Fixes GH-282] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40430 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- array.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'array.c') diff --git a/array.c b/array.c index 54c270cac9..5871146682 100644 --- a/array.c +++ b/array.c @@ -1342,8 +1342,6 @@ rb_ary_fetch(int argc, VALUE *argv, VALUE ary) * a.index("b") #=> 1 * a.index("z") #=> nil * a.index { |x| x == "b" } #=> 1 - * - * This is an alias of Array#find_index. */ static VALUE @@ -3158,6 +3156,7 @@ rb_ary_transpose(VALUE ary) /* * call-seq: * ary.replace(other_ary) -> ary + * ary.initialize_copy(other_ary) -> ary * * Replaces the contents of +self+ with the contents of +other_ary+, * truncating or expanding if necessary. -- cgit v1.2.3