update error message

This commit is contained in:
yggverse 2024-12-02 13:50:21 +02:00
parent 128b5d68b6
commit f0f34dfdb2
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ impl Display for Error {
write!(f, "Protocol error") write!(f, "Protocol error")
} }
Self::Undefined => { Self::Undefined => {
write!(f, "Undefined error") write!(f, "Undefined")
} }
} }
} }

View file

@ -17,7 +17,7 @@ impl Display for Error {
write!(f, "Protocol error") write!(f, "Protocol error")
} }
Self::Undefined => { Self::Undefined => {
write!(f, "Undefined error") write!(f, "Undefined")
} }
} }
} }