fix(export): override end function implementation

This commit is contained in:
PoiScript 2019-10-09 12:24:01 +08:00
parent 7e76d2f500
commit ab8eb65fed

View file

@ -341,6 +341,10 @@ mod syntect_handler {
}
Ok(())
}
fn end<W: Write>(&mut self, mut w: W, element: &Element<'_>) -> Result<(), E> {
self.inner.end(w, element)
}
}
}