From 10aaae92476266b3d95e3f4a14da1579b55ce93a Mon Sep 17 00:00:00 2001 From: Mike Welsh Date: Sat, 10 Oct 2020 00:03:25 -0700 Subject: [PATCH] chore: Appease nightly clippy --- core/src/html/text_format.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/html/text_format.rs b/core/src/html/text_format.rs index b12d3b15e..d3c5e1b72 100644 --- a/core/src/html/text_format.rs +++ b/core/src/html/text_format.rs @@ -1230,7 +1230,7 @@ impl FormatSpans { /// a handful of presentational attributes in the HTML tree to generate /// styling. There's also a `lower_from_css` that respects both /// presentational markup and CSS stylesheets. - pub fn lower_from_html<'gc>(&mut self, tree: XMLDocument<'gc>) { + pub fn lower_from_html(&mut self, tree: XMLDocument<'_>) { let mut format_stack = vec![self.default_format.clone()]; let mut last_successful_format = None;