1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-23 13:17:44 +00:00

Improve patch documentation

This commit is contained in:
Joshua Goins 2023-12-02 20:12:09 -05:00
parent 2f29b8eeae
commit 2c5491f82c

View file

@ -386,8 +386,11 @@ fn get_expansion_folder(id: u16) -> String {
} }
#[derive(Debug)] #[derive(Debug)]
/// Errors emitted in the patching process
pub enum PatchError { pub enum PatchError {
/// Failed to read parts of the file
InvalidPatchFile, InvalidPatchFile,
/// Failed to parse the patch format
ParseError, ParseError,
} }