From 1a1393dc8f2593bace3ef9b57c164819042d6f4f Mon Sep 17 00:00:00 2001 From: oneofthezombies Date: Mon, 12 Feb 2024 23:15:23 +0900 Subject: [PATCH] examples: apply clippy --- crates/examples/readme/src/cleanup_children.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/examples/readme/src/cleanup_children.rs b/crates/examples/readme/src/cleanup_children.rs index 26c3635..f62f094 100644 --- a/crates/examples/readme/src/cleanup_children.rs +++ b/crates/examples/readme/src/cleanup_children.rs @@ -9,7 +9,7 @@ fn cleanup_children() { ..Default::default() }; let result = kill_tree_with_config(current_process_id, &config); - println!("kill_tree_with_config: {:?}", result); + println!("kill_tree_with_config: {result:?}"); } fn main() {