From 1fe638532c16d32e4169ebce889add346836fd28 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Sun, 17 Dec 2023 16:39:28 +0800 Subject: [PATCH] [Fix #1218] Fix a typo Follow up https://github.com/rubocop/rubocop-rails/pull/526 --- lib/rubocop/cop/rails/content_tag.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rubocop/cop/rails/content_tag.rb b/lib/rubocop/cop/rails/content_tag.rb index 2ae4afe085..8a36dc7a71 100644 --- a/lib/rubocop/cop/rails/content_tag.rb +++ b/lib/rubocop/cop/rails/content_tag.rb @@ -7,7 +7,7 @@ module Rails # # NOTE: Allow `tag` when the first argument is a variable because # `tag(name)` is simpler rather than `tag.public_send(name)`. - # And this cop will be renamed to something like `LegacyTag` in the future. (e.g. RuboCop Rails 2.0) + # And this cop will be renamed to something like `LegacyTag` in the future. (e.g. RuboCop Rails 3.0) # # @example # # bad