lib/rubocop/cop/metrics/block_nesting.rb in rubocop-1.29.1 vs lib/rubocop/cop/metrics/block_nesting.rb in rubocop-1.30.0

- 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 + # 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.