From 1e74f0e2a9aa74d07da0037a084a64e62ce0cac6 Mon Sep 17 00:00:00 2001 From: eth-p <32112321+eth-p@users.noreply.github.com> Date: Tue, 11 Sep 2018 13:47:35 -0700 Subject: [PATCH] Ran `cargo fmt`. --- src/printer.rs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/printer.rs b/src/printer.rs index ae9823f6..bc095def 100644 --- a/src/printer.rs +++ b/src/printer.rs @@ -245,12 +245,11 @@ impl<'a> Printer for InteractivePrinter<'a> { for &(style, region) in regions.iter() { let text = &*self.preprocess(region, &mut cursor_total); - write!(handle, "{}", as_terminal_escaped( - style, - &*text, - true_color, - colored_output, - ))?; + write!( + handle, + "{}", + as_terminal_escaped(style, &*text, true_color, colored_output,) + )?; } } else { for &(style, region) in regions.iter() {