lib/rubocop/cop/layout/align_array.rb in rubocop-0.68.1 vs lib/rubocop/cop/layout/align_array.rb in rubocop-0.69.0

- old
+ new

@@ -22,10 +22,10 @@ # 'run'] class AlignArray < Cop include Alignment MSG = 'Align the elements of an array literal if they span more ' \ - 'than one line.'.freeze + 'than one line.' def on_array(node) check_alignment(node.children) end