From 4bdb61b665665141402c46e14dc1bea245e13fd5 Mon Sep 17 00:00:00 2001 From: Joshua Young Date: Sat, 29 Jul 2023 23:40:27 +1000 Subject: [DOC] Fix missing word in a comment --- enum.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/enum.c b/enum.c index 6fc2fc9b17..46fcb24cfd 100644 --- a/enum.c +++ b/enum.c @@ -4824,13 +4824,13 @@ uniq_iter(RB_BLOCK_CALL_FUNC_ARGLIST(i, hash)) * %w[a b c c b a a b c].uniq # => ["a", "b", "c"] * [0, 1, 2, 2, 1, 0, 0, 1, 2].uniq # => [0, 1, 2] * - * With a block, returns a new array containing only for which the block + * With a block, returns a new array containing elements only for which the block * returns a unique value: * * a = [0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 1] * a.uniq {|i| i.even? ? i : 0 } # => [0, 2, 4] * a = %w[a b c d e e d c b a a b c d e] - a.uniq {|c| c < 'c' } # => ["a", "c"] + * a.uniq {|c| c < 'c' } # => ["a", "c"] * */ -- cgit v1.2.3