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