summaryrefslogtreecommitdiff
path: root/array.c
diff options
context:
space:
mode:
authoreregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-19 16:19:13 +0000
committereregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-19 16:19:13 +0000
commit92abfccaa37ca9359f043078246a51261181b415 (patch)
tree30ed25752f0a22effd39faded61c403d88e96631 /array.c
parentc42cf83f26309b0cba46917f79d20d680e667054 (diff)
* array.c: Fix typo in class documentation
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39322 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
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 c9ff128df0..39a33675bb 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"]]
*