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

- old
+ new

@@ -1,10 +1,10 @@ # frozen_string_literal: true module RuboCop module Cop module Style - # This cop checks for use of the `File.expand_path` arguments. + # Checks for use of the `File.expand_path` arguments. # Likewise, it also checks for the `Pathname.new` argument. # # Contrastive bad case and good case are alternately shown in # the following examples. #