bloblru: Fix comment for New function

This commit is contained in:
Michael Eischer 2022-03-28 22:25:25 +02:00
parent 61e179ee78
commit 2f81af6afa
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ type Cache struct {
free, size int // Current and max capacity, in bytes.
}
// Construct a blob cache that stores at most size bytes worth of blobs.
// New constructs a blob cache that stores at most size bytes worth of blobs.
func New(size int) *Cache {
c := &Cache{
free: size,