From e9df058c25cd4486df8fe568d2ff24ea2c4ed0e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kat=20March=C3=A1n?= Date: Tue, 19 May 2026 13:44:51 -0700 Subject: [PATCH] clippy fix --- Cargo.lock | 1 + src/v2_parser.rs | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e3c4944..83cf19b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -399,6 +399,7 @@ dependencies = [ "miette 7.6.0", "num", "pretty_assertions", + "serde", "thiserror 2.0.17", "winnow", ] diff --git a/src/v2_parser.rs b/src/v2_parser.rs index 395b186..83560d6 100644 --- a/src/v2_parser.rs +++ b/src/v2_parser.rs @@ -380,12 +380,12 @@ fn base_node(input: &mut Input<'_>) -> PResult { // _both_ the error message for a string/ident parser error _and_ the error // message for a node name being expected. if !name_is_valid { - resume_after_cut(|input: &mut Input<'_>| -> PResult<()> { + resume_after_cut((|input: &mut Input<'_>| -> PResult<()> { Err(ErrMode::Cut(KdlParseError { span: Some(span_from_checkpoint(input, &_before_ident)), ..Default::default() })) - }.context(cx().msg("Found invalid node name") + }).context(cx().msg("Found invalid 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.")), empty).parse_next(input)?;