lib/rubocop/cop/style/global_vars.rb in rubocop-0.59.2 vs lib/rubocop/cop/style/global_vars.rb in rubocop-0.60.0

- old
+ new

@@ -1,10 +1,10 @@ # frozen_string_literal: true module RuboCop module Cop module Style - # This cops looks for uses of global variables. + # This cop looks for uses of global variables. # It does not report offenses for built-in global variables. # Built-in global variables are allowed by default. Additionally # users can allow additional variables via the AllowedVariables option. # # Note that backreferences like $1, $2, etc are not global variables.