lib/rubocop/cop/style/hash_syntax.rb in rubocop-0.72.0 vs lib/rubocop/cop/style/hash_syntax.rb in rubocop-0.73.0
- old
+ new
@@ -116,12 +116,12 @@
end
end
def alternative_style
case style
- when :hash_rockets then
+ when :hash_rockets
:ruby19
- when :ruby19, :ruby19_no_mixed_keys then
+ when :ruby19, :ruby19_no_mixed_keys
:hash_rockets
end
end
private