From 90a607fbb26666eae11b8d2c4253edd85b3e8da8 Mon Sep 17 00:00:00 2001 From: Issy Long Date: Thu, 27 Oct 2022 12:16:15 +0100 Subject: [PATCH] STYLEGUIDE: `UnusedBlockArgument` is in `Lint` not `Style` --- STYLEGUIDE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/STYLEGUIDE.md b/STYLEGUIDE.md index b294075..758651b 100644 --- a/STYLEGUIDE.md +++ b/STYLEGUIDE.md @@ -935,7 +935,7 @@ enabled = true if enabled.nil? * Use `_` for unused block parameters. [[link](#underscore-unused-vars)] - * RuboCop rule: Style/UnusedBlockArgument + * RuboCop rule: Lint/UnusedBlockArgument ``` ruby # bad