diff --git a/storage/kv/helpers.go b/storage/kv/helpers.go index bd2b7d6..6309946 100644 --- a/storage/kv/helpers.go +++ b/storage/kv/helpers.go @@ -16,7 +16,7 @@ func SetMap(ctx context.Context, b RWBucket, m map[string][]byte) error { return nil } -// SetMap iterates over keys to get the values in b and returns any error immediately. +// GetMap iterates over keys to get the values in b and returns any error immediately. func GetMap(ctx context.Context, b ROBucket, keys []string) (map[string][]byte, error) { var err error ret := make(map[string][]byte)