From 281e6e1b3be1a5415a51cfd80757f004d4e12e78 Mon Sep 17 00:00:00 2001 From: zzak Date: Tue, 19 Feb 2013 03:32:11 +0000 Subject: * object.c: rdoc formatting for Kernel#Array() * array.c: Add rdoc for Array() method to Creating Arrays section git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39312 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- array.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'array.c') diff --git a/array.c b/array.c index a7c74a2aa4..c9ff128df0 100644 --- a/array.c +++ b/array.c @@ -5240,6 +5240,11 @@ rb_ary_drop_while(VALUE ary) * empty_table = Array.new(3) { Array.new(3) } * #=> [[nil, nil, nil], [nil, nil, nil], [nil, nil, nil]] * + * An array can also be created by using the Array() method, provided by + * Kernel, which calls #to_ary or #to_a on it's argument. + * + * Array({:a => "a", :b => "b"}) #=> [[:a, "a"], [:b, "b"]] + * * == Example Usage * * In addition to the methods it mixes in through the Enumerable module, the -- cgit v1.2.3