diff --git a/store/store.go b/store/store.go index e7b5c2d..2aa4679 100644 --- a/store/store.go +++ b/store/store.go @@ -7,7 +7,7 @@ type BlobStore interface { // Does blob exist in the store Has(hash string) (bool, error) // Get the blob from the store - Get(hase string) ([]byte, error) + Get(hash string) ([]byte, error) // Put the blob into the store Put(hash string, blob []byte) error // Put an SD blob into the store