summaryrefslogtreecommitdiff
path: root/object.c
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-24 04:45:37 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-24 04:45:37 +0000
commit42142d434fcbfce15e2c5b73715e4a794dba361a (patch)
treecbe27530f5e66b9504c5667250806786d7ecf4b3 /object.c
parentbd0880d53217e71e44952ee3dca02ea2d178e694 (diff)
* object.c: rdoc formatting for Kernel#Array() [Backport #7931]
* array.c: Add rdoc for Array() method to Creating Arrays section git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@39454 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r--object.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/object.c b/object.c
index b3222e56e7..1bec19297b 100644
--- a/object.c
+++ b/object.c
@@ -2747,8 +2747,9 @@ rb_Array(VALUE val)
* call-seq:
* Array(arg) -> array
*
- * Returns <i>arg</i> as an <code>Array</code>. First tries to call
- * <i>arg</i><code>.to_ary</code>, then <i>arg</i><code>.to_a</code>.
+ * Returns +arg+ as an Array.
+ *
+ * First tries to call Array#to_ary on +arg+, then Array#to_a.
*
* Array(1..5) #=> [1, 2, 3, 4, 5]
*/