From e29ea7fdec4f31e0c908a733a0fb4b797564673c Mon Sep 17 00:00:00 2001 From: Caley Woods Date: Wed, 8 Jun 2011 11:29:20 -0700 Subject: [PATCH 1/2] minor grammatical change to better reflect the end result of a drop operation. --- array.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/array.c b/array.c index 9664626..bb3e25d 100644 --- a/array.c +++ b/array.c @@ -4553,8 +4553,8 @@ rb_ary_take_while(VALUE ary) * call-seq: * ary.drop(n) -> new_ary * - * Drops first n elements from ary, and returns rest elements - * in an array. + * Drops first n elements from ary, and returns the rest of + * the elements in an array. * * a = [1, 2, 3, 4, 5, 0] * a.drop(3) #=> [4, 5, 0] -- 1.7.2.3