lib/rubocop/cop/style/word_array.rb in rubocop-1.29.1 vs lib/rubocop/cop/style/word_array.rb in rubocop-1.30.0
- old
+ new
@@ -1,10 +1,10 @@
# frozen_string_literal: true
module RuboCop
module Cop
module Style
- # This cop can check for array literals made up of word-like
+ # Checks for array literals made up of word-like
# strings, that are not using the %w() syntax.
#
# Alternatively, it can check for uses of the %w() syntax, in projects
# which do not want to include that syntax.
#