lib/rubocop/cop/naming/constant_name.rb in rubocop-1.29.1 vs lib/rubocop/cop/naming/constant_name.rb in rubocop-1.30.0

- old
+ new

@@ -1,10 +1,10 @@ # frozen_string_literal: true module RuboCop module Cop module Naming - # This cop checks whether constant names are written using + # Checks whether constant names are written using # SCREAMING_SNAKE_CASE. # # To avoid false positives, it ignores cases in which we cannot know # for certain the type of value that would be assigned to a constant. #