summaryrefslogtreecommitdiff
path: root/src/directive/brokenlinks.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/directive/brokenlinks.rs')
-rw-r--r--src/directive/brokenlinks.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/directive/brokenlinks.rs b/src/directive/brokenlinks.rs
index 3091be9..154ffed 100644
--- a/src/directive/brokenlinks.rs
+++ b/src/directive/brokenlinks.rs
@@ -16,7 +16,7 @@ impl BrokenLinks {
}
pub fn process(&self, _site: &Site, _meta: &mut PageMeta) -> Result<String, SiteError> {
- Ok("FIXME:inline".into())
+ Err(SiteError::UnimplementedDirective("brokenlinks".into()))
}
}