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