fix: wrap closure in parentheses to resolve clippy warning

This commit is contained in:
Thomas KEMKEMIAN 2026-02-27 01:27:27 +01:00
parent 997cdc45f6
commit cdeee3e2df
1 changed files with 2 additions and 2 deletions

View File

@ -382,12 +382,12 @@ fn base_node(input: &mut Input<'_>) -> PResult<KdlNode> {
// _both_ the error message for a string/ident parser error _and_ the error // _both_ the error message for a string/ident parser error _and_ the error
// message for a node name being expected. // message for a node name being expected.
if !name_is_valid { if !name_is_valid {
resume_after_cut(|input: &mut Input<'_>| -> PResult<()> { resume_after_cut((|input: &mut Input<'_>| -> PResult<()> {
Err(ErrMode::Cut(KdlParseError { Err(ErrMode::Cut(KdlParseError {
span: Some(span_from_checkpoint(input, &_before_ident)), span: Some(span_from_checkpoint(input, &_before_ident)),
..Default::default() ..Default::default()
})) }))
}.context(cx().msg("Found invalid node name") }).context(cx().msg("Found invalid node name")
.lbl("node name") .lbl("node name")
.hlp("This can be any string type, including a quoted, raw, or multiline string, as well as a plain identifier string.")), .hlp("This can be any string type, including a quoted, raw, or multiline string, as well as a plain identifier string.")),
empty).parse_next(input)?; empty).parse_next(input)?;