From 68f3f2e1592b1b5400208e4852c6596ee248676f Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Wed, 18 Oct 2023 12:42:09 -0400 Subject: [PATCH] Clippy fixes. --- src/parser/bullshitium.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/parser/bullshitium.rs b/src/parser/bullshitium.rs index 27151c03..4e562d7d 100644 --- a/src/parser/bullshitium.rs +++ b/src/parser/bullshitium.rs @@ -93,7 +93,7 @@ pub(crate) fn broken_end<'b, 'g, 'r, 's>( #[cfg_attr( feature = "tracing", - tracing::instrument(ret, level = "debug", skip(context)) + tracing::instrument(ret, level = "debug", skip(_context)) )] pub(crate) fn detect_broken_end<'b, 'g, 'r, 's>( _context: RefContext<'b, 'g, 'r, 's>, @@ -152,7 +152,7 @@ pub(crate) fn broken_dynamic_block<'b, 'g, 'r, 's>( #[cfg_attr( feature = "tracing", - tracing::instrument(ret, level = "debug", skip(context)) + tracing::instrument(ret, level = "debug", skip(_context)) )] pub(crate) fn detect_broken_dynamic_block<'b, 'g, 'r, 's>( _context: RefContext<'b, 'g, 'r, 's>,