From d072b9d3cdb2729139a9a3c45b4f5c25b4002f6b Mon Sep 17 00:00:00 2001 From: DustInDark Date: Tue, 7 Jun 2022 21:17:51 +0900 Subject: [PATCH] cargo fmt --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 9589d514..cfa2f1e6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -322,7 +322,7 @@ impl App { let mut output = "Pivot keyword results saved to the following files:\n".to_string(); - pivot_key_unions.iter().for_each(|(key, _)|{ + pivot_key_unions.iter().for_each(|(key, _)| { output += &(pivot_file.to_owned() + "-" + key + ".txt" + "\n"); }); write_color_buffer(BufferWriter::stdout(ColorChoice::Always), None, &output).ok();