Skip to content

Commit 5038a89

Browse files
authored
Eliminate unnecessary leading :: (#19)
1 parent b8db982 commit 5038a89

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ Your plugins can be as simple or as complex as you want. Here are some other thi
7676
You'll want to ensure that all teams are valid in your CI environment. We recommend running code like this in CI:
7777
```ruby
7878
require 'code_teams'
79-
errors = ::CodeTeams.validation_errors(::CodeTeams.all)
79+
80+
errors = CodeTeams.validation_errors(CodeTeams.all)
8081
if errors.any?
8182
abort <<~ERROR
8283
Team validation failed with the following errors:

0 commit comments

Comments
 (0)