From c61ba6be7a52b22bd20c4dafad877cb4a94d6994 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 17 Oct 2022 15:25:49 -0400 Subject: [PATCH] Note a TODO that the InvalidPatchFile error is misleading --- src/patch.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/patch.rs b/src/patch.rs index e0233a8..9e2981c 100755 --- a/src/patch.rs +++ b/src/patch.rs @@ -380,6 +380,7 @@ pub enum PatchError { } impl From for PatchError { + // TODO: implement specific PatchErrors for stuff like out of storage space. invalidpatchfile is a bad name for this fn from(_: std::io::Error) -> Self { PatchError::InvalidPatchFile }