Fix typos reported by misspell

This commit is contained in:
Michael Eischer
2020-10-05 23:13:38 +02:00
parent 9ffb698c8d
commit eba5dd831f
3 changed files with 3 additions and 3 deletions

View File

@@ -715,7 +715,7 @@ func (r *Repository) SaveBlob(ctx context.Context, t restic.BlobType, buf []byte
// first try to add to pending blobs; if not successful, this blob is already known
known = !r.idx.addPending(newID, t)
// only save when needed or explicitely told
// only save when needed or explicitly told
if !known || storeDuplicate {
err = r.SaveAndEncrypt(ctx, t, buf, newID)
}