mirror of
https://github.com/restic/restic.git
synced 2025-01-03 13:45:20 +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.
|
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 {
|
func New(size int) *Cache {
|
||||||
c := &Cache{
|
c := &Cache{
|
||||||
free: size,
|
free: size,
|
||||||
|
|
Loading…
Reference in a new issue