lib/rubocop/cop/metrics/block_nesting.rb in rbhint-0.85.1.rc2 vs lib/rubocop/cop/metrics/block_nesting.rb in rbhint-0.87.1.rc1
- old
+ new
@@ -1,10 +1,10 @@
# frozen_string_literal: true
module RuboCop
module Cop
module Metrics
- # This cop checks for excessive nesting of conditional and looping
+ # This hint checks for excessive nesting of conditional and looping
# constructs.
#
# You can configure if blocks are considered using the `CountBlocks`
# option. When set to `false` (the default) blocks are not counted
# towards the nesting level. Set to `true` to count blocks as well.