From e344943f6b8461d7fb7d6fdaed6b947c39ffff62 Mon Sep 17 00:00:00 2001 From: PoiScript Date: Wed, 9 Oct 2019 13:06:32 +0800 Subject: [PATCH] fix(export): remove unused mut annotation --- orgize/src/export/html.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orgize/src/export/html.rs b/orgize/src/export/html.rs index b7689ad..85cb234 100644 --- a/orgize/src/export/html.rs +++ b/orgize/src/export/html.rs @@ -342,7 +342,7 @@ mod syntect_handler { Ok(()) } - fn end(&mut self, mut w: W, element: &Element<'_>) -> Result<(), E> { + fn end(&mut self, w: W, element: &Element<'_>) -> Result<(), E> { self.inner.end(w, element) } }