Adding a comment.

This commit is contained in:
Tom Alexander 2020-05-09 14:33:13 -04:00
parent 5d7c991bf0
commit 98a0145760
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -1,6 +1,9 @@
use std::error;
use std::fmt;
/// Fatal errors while rendering.
///
/// A RenderError will halt rendering.
pub enum RenderError {
Generic(String),
TemplateNotFound(String),