Skip to content
This repository was archived by the owner on Dec 6, 2024. It is now read-only.

Commit cb0dca9

Browse files
committed
fix: adjust case according to go std
1 parent 83a394b commit cb0dca9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: pkg/util/const.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const (
1010

1111
var (
1212
// Error codes that the central controller will return
13-
ErrBucketAlreadyExists = errors.New("A bucket already existing that matches the bucket claim")
14-
ErrInvalidBucketClass = errors.New("Cannot find bucket class with the name specified in the bucket claim")
15-
ErrNotImplemented = errors.New("Operation Not Implemented")
13+
ErrBucketAlreadyExists = errors.New("a bucket already existing that matches the bucket claim")
14+
ErrInvalidBucketClass = errors.New("cannot find bucket class with the name specified in the bucket claim")
15+
ErrNotImplemented = errors.New("operation not implemented")
1616
)

0 commit comments

Comments
 (0)