From e67e3dbf85fba09a404ebf5568d3db1cc2ce690a Mon Sep 17 00:00:00 2001 From: Alex Grintsvayg Date: Mon, 8 Oct 2018 13:29:05 -0400 Subject: [PATCH] typo --- store/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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