lib/rubocop/cop/style/special_global_vars.rb in rubocop-1.52.0 vs lib/rubocop/cop/style/special_global_vars.rb in rubocop-1.52.1

- old
+ new

@@ -1,11 +1,10 @@ # frozen_string_literal: true module RuboCop module Cop module Style - # - # This cop looks for uses of Perl-style global variables. + # Looks for uses of Perl-style global variables. # Correcting to global variables in the 'English' library # will add a require statement to the top of the file if # enabled by RequireEnglish config. # # @safety