aboutsummaryrefslogtreecommitdiffstats
path: root/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'array.c')
-rw-r--r--array.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/array.c b/array.c
index 741887bcba..ca9cc448a0 100644
--- a/array.c
+++ b/array.c
@@ -767,8 +767,6 @@ rb_ary_aref(int argc, VALUE *argv, VALUE ary)
* Returns the element at _index_. A
* negative index counts from the end of _self_. Returns +nil+
* if the index is out of range. See also <code>Array#[]</code>.
- * (<code>Array#at</code> is slightly faster than <code>Array#[]</code>,
- * as it does not accept ranges and so on.)
*
* a = [ "a", "b", "c", "d", "e" ]
* a.at(0) #=> "a"