summaryrefslogtreecommitdiff
path: root/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'array.c')
-rw-r--r--array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/array.c b/array.c
index fb412f1c8d..4977692d80 100644
--- a/array.c
+++ b/array.c
@@ -5241,7 +5241,7 @@ rb_ary_drop_while(VALUE ary)
* #=> [[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.
+ * Kernel, which tries to call #to_ary, then #to_a on its argument.
*
* Array({:a => "a", :b => "b"}) #=> [[:a, "a"], [:b, "b"]]
*