Skip to content

Commit

Permalink
crda: fix typo (#534)
Browse files Browse the repository at this point in the history
Remove parenthesis.

Signed-off-by: crozzy <[email protected]>
  • Loading branch information
crozzy authored Dec 7, 2021
1 parent c52e0e0 commit d9e2950
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crda/remotematcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ func WithBatchSize(batchSize int) Option {
}

// Name implements driver.Matcher.
func (m *Matcher) Name() string { return fmt.Sprintf("crda-%s)", m.ecosystem) }
func (m *Matcher) Name() string { return fmt.Sprintf("crda-%s", m.ecosystem) }

// Maps the crda ecosystem to claircore.Repository.Name.
func ecosystemToRepositoryName(ecosystem string) string {
Expand Down

0 comments on commit d9e2950

Please sign in to comment.