lib/rubocop/cop/style/for.rb in rubocop-1.29.1 vs lib/rubocop/cop/style/for.rb in rubocop-1.30.0

- old
+ new

@@ -1,10 +1,10 @@ # frozen_string_literal: true module RuboCop module Cop module Style - # This cop looks for uses of the `for` keyword or `each` method. The + # Looks for uses of the `for` keyword or `each` method. The # preferred alternative is set in the EnforcedStyle configuration # parameter. An `each` call with a block on a single line is always # allowed. # # @example EnforcedStyle: each (default)