This commit is contained in:
Tom Alexander 2020-04-12 21:14:21 -04:00
parent cc52c3ad05
commit 0c4e97c556
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -63,13 +63,13 @@ impl error::Error for RenderError<'_> {
impl fmt::Display for CompileError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Error rendering: {}", self.message)
write!(f, "Error compiling: {}", self.message)
}
}
impl fmt::Debug for CompileError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "Error rendering: {}", self.message)
write!(f, "Error compiling: {}", self.message)
}
}