cargo fmt

This commit is contained in:
adamnemecek 2025-06-11 08:51:38 -07:00
parent f37f77abed
commit 992e3292d5
1 changed files with 1 additions and 3 deletions

View File

@ -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