From 680d64be1e8933d10cce45717eec8a51a108393f Mon Sep 17 00:00:00 2001 From: sjhddh Date: Wed, 11 Mar 2026 07:16:49 +0000 Subject: [PATCH] fix: correct typo in filestore comment --- pkg/filestore/blockstore.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/filestore/blockstore.go b/pkg/filestore/blockstore.go index 55ce70183a..1b8a699500 100644 --- a/pkg/filestore/blockstore.go +++ b/pkg/filestore/blockstore.go @@ -173,7 +173,7 @@ func (s *FileStore) DeleteZone(ctx context.Context, zoneId string) error { return nil } -// if file doesn't exsit, returns fs.ErrNotExist +// if file doesn't exist, returns fs.ErrNotExist func (s *FileStore) Stat(ctx context.Context, zoneId string, name string) (*WaveFile, error) { return withLockRtn(s, zoneId, name, func(entry *CacheEntry) (*WaveFile, error) { file, err := entry.loadFileForRead(ctx)