Skip to content

Commit b01f9e2

Browse files
committed
remove TODOs
1 parent 4f20a30 commit b01f9e2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: memkv/memkv.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@ import (
99

1010
// Store is a generic in-memory key-value store.
1111
type Store[K comparable, V any] struct {
12-
// TODO: should this be part of the underlying data?
13-
mu *sync.RWMutex
1412
capacity int
13+
mu *sync.RWMutex
1514
data *underlying.Data[K, V]
1615
}
1716

0 commit comments

Comments
 (0)