From 304b82981e9ada9ff71d30a2f480f0a60bcf52d1 Mon Sep 17 00:00:00 2001 From: JohnnyMorganz Date: Sat, 7 Dec 2024 14:32:00 +0100 Subject: [PATCH] fix clippy lints --- full-moon/src/node.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/full-moon/src/node.rs b/full-moon/src/node.rs index 2e4c7e25..97d0606b 100644 --- a/full-moon/src/node.rs +++ b/full-moon/src/node.rs @@ -92,7 +92,7 @@ impl<'a> Iterator for Tokens<'a> { } } -impl<'a> DoubleEndedIterator for Tokens<'a> { +impl DoubleEndedIterator for Tokens<'_> { fn next_back(&mut self) -> Option { if self.items.is_empty() { return None;