lib/rubocop/cop/style/method_def_parentheses.rb in rubocop-0.59.2 vs lib/rubocop/cop/style/method_def_parentheses.rb in rubocop-0.60.0

- old
+ new

@@ -1,10 +1,10 @@ # frozen_string_literal: true module RuboCop module Cop module Style - # This cops checks for parentheses around the arguments in method + # This cop checks for parentheses around the arguments in method # definitions. Both instance and class/singleton methods are checked. # # @example EnforcedStyle: require_parentheses (default) # # The `require_parentheses` style requires method definitions # # to always use parentheses