lib/rubocop/cop/style/redundant_interpolation_unfreeze.rb in rubocop-1.66.0 vs lib/rubocop/cop/style/redundant_interpolation_unfreeze.rb in rubocop-1.66.1

- old
+ new

@@ -14,10 +14,10 @@ # # # bad # "#{foo} bar".dup # # # good - # "#{foo} bar" + # "#{foo} bar" # class RedundantInterpolationUnfreeze < Base include FrozenStringLiteral extend AutoCorrector extend TargetRubyVersion