Skip to content

Commit f31f0a3

Browse files
committed
make error lowercase
Signed-off-by: sotiris <[email protected]>
1 parent 8a81bd4 commit f31f0a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cache/v3/linear.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ func (cache *LinearCache) getVersion() string {
570570
}
571571

572572
func (cache *LinearCache) Fetch(context.Context, *Request) (Response, error) {
573-
return nil, errors.New("Fetch is not implemented by LinearCache")
573+
return nil, errors.New("fetch is not implemented by LinearCache")
574574
}
575575

576576
// NumResources returns the number of resources currently in the cache.

0 commit comments

Comments
 (0)