From d6440a9c1577b54c57db40a4e7523e187a078222 Mon Sep 17 00:00:00 2001 From: Nastia Gorokhova-Alekseeva Date: Wed, 22 Sep 2021 15:32:36 +0300 Subject: [PATCH] Typo in docs for config option for Naming/BlockParameterName --- lib/rubocop/cop/naming/block_parameter_name.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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