mirror of
https://github.com/restic/restic.git
synced 2024-12-22 07:43:03 +00:00
bloblru: Fix comment for New function
This commit is contained in:
parent
61e179ee78
commit
2f81af6afa
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue