lib/rubocop/cop/lint/useless_setter_call.rb in rubocop-0.84.0 vs lib/rubocop/cop/lint/useless_setter_call.rb in rubocop-0.85.0
- old
+ new
@@ -4,10 +4,10 @@
module Cop
module Lint
# This cop checks for setter call to local variable as the final
# expression of a function definition.
#
- # Note: There are edge cases in which the local variable references a
+ # NOTE: There are edge cases in which the local variable references a
# value that is also accessible outside the local scope. This is not
# detected by the cop, and it can yield a false positive.
#
# @example
#