cargo fmt

This commit is contained in:
DustInDark
2022-06-07 21:17:51 +09:00
parent d480ebef0f
commit d072b9d3cd

View File

@@ -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();