diff --git a/lib/rubocop/cop/naming/block_parameter_name.rb b/lib/rubocop/cop/naming/block_parameter_name.rb index 779457ff708..8f3c571936a 100644 --- a/lib/rubocop/cop/naming/block_parameter_name.rb +++ b/lib/rubocop/cop/naming/block_parameter_name.rb @@ -24,7 +24,7 @@ module Naming # # With `AllowNamesEndingInNumbers` set to false # foo { |num1, num2| num1 * num2 } # - # # With `MinParamNameLength` set to number greater than 1 + # # With `MinNameLength` set to number greater than 1 # baz { |a, b, c| do_stuff(a, b, c) } # # # good