summaryrefslogtreecommitdiff
path: root/set/set.go
diff options
context:
space:
mode:
authorPaul Buetow <git@mx.buetow.org>2020-11-03 09:50:46 +0000
committerPaul Buetow <git@mx.buetow.org>2020-11-03 09:50:46 +0000
commiteebd141f6e7b04518916ad3287b012b83b5a4b5f (patch)
treee840c6817ade10c4cfdd5fd8111faea9ed3eddcc /set/set.go
parentf2b6ebf6ba207f8a9e09088636f7983f67801b81 (diff)
add min and max binary search tree methods
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 {