From 9e9caa692ee9c64d7fca8a42c214bfc11bd936cf Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Mon, 6 May 2024 22:19:02 +0900 Subject: [PATCH] Fix a build error Follow up #12887. This commit fixes the following build error: ```console $ bundle exec rake documentation_syntax_check (snip) lib/rubocop/cop/style/special_global_vars.rb: Syntax Error in an example. unexpected token tIDENTIFIER ``` https://app.circleci.com/pipelines/github/rubocop/rubocop/11118/workflows/dfa24f2b-a0f5-405b-86a6-cbf87cb3caac/jobs/311295 --- lib/rubocop/cop/style/special_global_vars.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/rubocop/cop/style/special_global_vars.rb b/lib/rubocop/cop/style/special_global_vars.rb index 5b83b9af315..ad723f0c56a 100644 --- a/lib/rubocop/cop/style/special_global_vars.rb +++ b/lib/rubocop/cop/style/special_global_vars.rb @@ -58,9 +58,8 @@ module Style # # @example EnforcedStyle: use_builtin_english_names # - # Like `use_perl_names` but allows builtin global vars. - # # # good + # # Like `use_perl_names` but allows builtin global vars. # puts $LOAD_PATH # puts $LOADED_FEATURES # puts $PROGRAM_NAME