Skip to content

Commit 10fcd0c

Browse files
committed
Fix arg order for errors.Is
1 parent bd86025 commit 10fcd0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kv_storage.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func (c *KVStorage[T]) get(key string) (T, error) {
6969

7070
dataBytes, err := c.db.Get(key)
7171
if err != nil {
72-
if errors.Is(hord.ErrNil, err) {
72+
if errors.Is(err, hord.ErrNil) {
7373
return *new(T), ErrNotFound
7474
}
7575
return *new(T), fmt.Errorf("error getting data: %w", err)

0 commit comments

Comments
 (0)