diff --git a/activesupport/lib/active_support/core_ext/enumerable.rb b/activesupport/lib/active_support/core_ext/enumerable.rb index 12659d7008149c9479be32622c35d3524f65f403..26596d838dd37a66daf91aa8ab8386aeb7a0dfe7 100644 --- a/activesupport/lib/active_support/core_ext/enumerable.rb +++ b/activesupport/lib/active_support/core_ext/enumerable.rb @@ -107,7 +107,7 @@ def many?(&block) # Returns true if none of the elements match the given block. # - # success = responses.none? {|r| r.status / 100 == 3 } + # success = responses.none? {|r| r.status / 100 == 5 } # def none?(&block) return true if !block_given? || blank?