clippy fix

This commit is contained in:
Kat Marchán 2026-05-19 13:44:51 -07:00
parent 68af7756e9
commit e9df058c25
2 changed files with 3 additions and 2 deletions

1
Cargo.lock generated
View File

@ -399,6 +399,7 @@ dependencies = [
"miette 7.6.0", "miette 7.6.0",
"num", "num",
"pretty_assertions", "pretty_assertions",
"serde",
"thiserror 2.0.17", "thiserror 2.0.17",
"winnow", "winnow",
] ]

View File

@ -380,12 +380,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)?;