lib/rubocop/cop/lint/useless_times.rb in rubocop-1.58.0 vs lib/rubocop/cop/lint/useless_times.rb in rubocop-1.59.0

- old
+ new

@@ -2,10 +2,10 @@ module RuboCop module Cop module Lint # Checks for uses of `Integer#times` that will never yield - # (when the integer <= 0) or that will only ever yield once + # (when the integer ``<= 0``) or that will only ever yield once # (`1.times`). # # @safety # This cop is unsafe as `times` returns its receiver, which is # *usually* OK, but might change behavior.