1
0
mirror of https://github.com/gilbertchen/duplicacy synced 2025-12-06 00:03:38 +00:00

Merge pull request #641 from A-wels/patch-1

Fixed typo incomlete -> incomplete
This commit is contained in:
gilbertchen
2023-01-17 11:51:20 -05:00
committed by GitHub

View File

@@ -550,7 +550,7 @@ func loadIncompleteSnapshot(snapshotID string, cachePath string) *EntryList {
}
}
LOG_INFO("INCOMPLETE_LOAD", "Previous incomlete backup contains %d files and %d chunks",
LOG_INFO("INCOMPLETE_LOAD", "Previous incomplete backup contains %d files and %d chunks",
entryList.NumberOfEntries, len(entryList.PreservedChunkLengths) + len(entryList.UploadedChunkHashes))
return entryList
@@ -571,4 +571,4 @@ func deleteIncompleteSnapshot(cachePath string) {
}
}
}