fix(export): remove unused mut annotation

This commit is contained in:
PoiScript 2019-10-09 13:06:32 +08:00
parent ab8eb65fed
commit e344943f6b

View file

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