rename Hashable/Hasher

This commit is contained in:
Barak Michener 2014-08-06 15:57:00 -04:00
parent 4d9dd42dd8
commit 2b43185117
3 changed files with 8 additions and 8 deletions

View file

@ -44,7 +44,7 @@ const (
type Token []byte
func (t Token) Hashable() interface{} {
func (t Token) Hasher() interface{} {
return string(t)
}