Correct comment

This commit is contained in:
Alexander Neumann 2016-07-30 13:58:27 +02:00
parent d609e4a986
commit f59ffcaeae
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ func Repack(repo *Repository, packs, keepBlobs backend.IDSet) (err error) {
buf := make([]byte, 0, maxPackSize)
for packID := range packs {
// load the complete blob
// load the complete pack
h := backend.Handle{Type: backend.Data, Name: packID.String()}
l, err := repo.Backend().Load(h, buf[:cap(buf)], 0)