Solve the rest of the compiler warnings.

This commit is contained in:
Tom Alexander
2023-04-21 18:42:31 -04:00
parent a1724dae52
commit 18323a2b43
13 changed files with 16 additions and 31 deletions

View File

@@ -41,7 +41,7 @@ pub fn property_drawer<'r, 's>(
}
let (
remaining,
(_start_of_line, _leading_whitespace, open_tag, _trailing_whitespace, _line_ending),
(_start_of_line, _leading_whitespace, _open_tag, _trailing_whitespace, _line_ending),
) = tuple((
parser_with_context!(start_of_line)(context),
space0,
@@ -87,7 +87,7 @@ fn node_property<'r, 's>(
context: Context<'r, 's>,
input: &'s str,
) -> Res<&'s str, NodeProperty<'s>> {
let (remaining, (_start_of_line, _leading_whitespace, _open_colon, name, _close_colon)) =
let (remaining, (_start_of_line, _leading_whitespace, _open_colon, _name, _close_colon)) =
tuple((
parser_with_context!(start_of_line)(context),
space0,