summaryrefslogtreecommitdiff
path: root/src/directive/graph.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/directive/graph.rs')
-rw-r--r--src/directive/graph.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/directive/graph.rs b/src/directive/graph.rs
index c8c7480..8234ed2 100644
--- a/src/directive/graph.rs
+++ b/src/directive/graph.rs
@@ -12,7 +12,7 @@ impl Graph {
pub const ALLOW_ANY_UNNAMED: bool = true;
pub fn process(&self, _site: &Site, _meta: &mut PageMeta) -> Result<String, SiteError> {
- Ok("FIXME:graph".into())
+ Err(SiteError::UnimplementedDirective("graph".into()))
}
}