From da12fcdab61711102931c401b09d6b69730b1b68 Mon Sep 17 00:00:00 2001 From: Jan Lukas Gernert Date: Fri, 24 Mar 2023 08:09:26 +0100 Subject: [PATCH] clippy --- src/util.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.rs b/src/util.rs index 8ab7483..1e8a65e 100644 --- a/src/util.rs +++ b/src/util.rs @@ -795,6 +795,6 @@ impl Util { as_html: true, non_significant_whitespace: false, }); - std::fs::write(filename, &html).unwrap(); + std::fs::write(filename, html).unwrap(); } }