From 8dbfd4b86c6ec0dce0472a735f30dfcd081ef87c Mon Sep 17 00:00:00 2001 From: nagachika Date: Mon, 27 Mar 2017 15:43:35 +0000 Subject: merge revision(s) 58037: [Backport #10944] docs for creating arrays * array.c: [DOC] add example for Array.new with block and index. Reported by Don Cruickshank. [ruby-core:68442] [Bug #10944] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@58163 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- array.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'array.c') diff --git a/array.c b/array.c index da38d945b1..3bd267a51f 100644 --- a/array.c +++ b/array.c @@ -5592,7 +5592,8 @@ rb_ary_dig(int argc, VALUE *argv, VALUE self) * This method is safe to use with mutable objects such as hashes, strings or * other arrays: * - * Array.new(4) { Hash.new } #=> [{}, {}, {}, {}] + * Array.new(4) { Hash.new } #=> [{}, {}, {}, {}] + * Array.new(4) {|i| i.to_s } #=> ["0", "1", "2", "3"] * * This is also a quick way to build up multi-dimensional arrays: * -- cgit v1.2.3