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

- old
+ new

@@ -2,10 +2,10 @@ module RuboCop module Cop module Style # This cop checks for the use of a method, the result of which - # would be a literal, like an empty array, hash or string. + # would be a literal, like an empty array, hash, or string. # # @example # # bad # a = Array.new # h = Hash.new