From 992e3292d52ca6a8ee7cf911abac59466bc44dcb Mon Sep 17 00:00:00 2001 From: adamnemecek Date: Wed, 11 Jun 2025 08:51:38 -0700 Subject: [PATCH] cargo fmt --- src/node.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/node.rs b/src/node.rs index 3b0cf86..af9914b 100644 --- a/src/node.rs +++ b/src/node.rs @@ -625,9 +625,7 @@ impl KdlNode { } } if idx > current_idx { - panic!( - "Insertion index (is {idx}) should be <= len (is {current_idx})" - ); + panic!("Insertion index (is {idx}) should be <= len (is {current_idx})"); } else { self.entries.push(entry); None