summaryrefslogtreecommitdiff
path: root/set/set.go
diff options
context:
space:
mode:
Diffstat (limited to 'set/set.go')
-rw-r--r--set/set.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/set/set.go b/set/set.go
index 32174bc..29bfad7 100644
--- a/set/set.go
+++ b/set/set.go
@@ -3,8 +3,8 @@ package set
import "fmt"
var (
- NotFound = fmt.Errorf("Could not find entry")
- NotImplemented = fmt.Errorf("Method not implemented")
+ NotFound = fmt.Errorf("could not find entry")
+ NotImplemented = fmt.Errorf("method not implemented")
)
type Set interface {