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 3cf5b7ceb3..d50df152d5 100644
--- a/array.c
+++ b/array.c
@@ -2826,7 +2826,7 @@ rb_ary_shuffle_bang(VALUE ary)
* call-seq:
* array.shuffle -> an_array
*
- * Returns a new array that with elements of this array shuffled.
+ * Returns a new array with elements of this array shuffled.
*
* a = [ 1, 2, 3 ] #=> [1, 2, 3]
* a.shuffle #=> [2, 3, 1]