Skip to content

Commit 9e9caa6

Browse files
committed
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
1 parent 63fc72d commit 9e9caa6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/rubocop/cop/style/special_global_vars.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,8 @@ module Style
5858
#
5959
# @example EnforcedStyle: use_builtin_english_names
6060
#
61-
# Like `use_perl_names` but allows builtin global vars.
62-
#
6361
# # good
62+
# # Like `use_perl_names` but allows builtin global vars.
6463
# puts $LOAD_PATH
6564
# puts $LOADED_FEATURES
6665
# puts $PROGRAM_NAME

0 commit comments

Comments
 (0)