Skip to content

Commit

Permalink
Fix a build error
Browse files Browse the repository at this point in the history
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
  • Loading branch information
koic committed May 6, 2024
1 parent 63fc72d commit 9e9caa6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/rubocop/cop/style/special_global_vars.rb
Expand Up @@ -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
Expand Down

0 comments on commit 9e9caa6

Please sign in to comment.