Solve the rest of the compiler warnings.
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user