From fee06958744756e280cdf83c3ffeade8057fcaff Mon Sep 17 00:00:00 2001 From: Qrius Date: Thu, 26 Sep 2024 00:11:05 +0200 Subject: rustfmt --- src/macro_processor/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/macro_processor/main.rs b/src/macro_processor/main.rs index 5b083c8..d8247d6 100644 --- a/src/macro_processor/main.rs +++ b/src/macro_processor/main.rs @@ -14,7 +14,9 @@ fn repl() { print!("> "); let _ = io::stdout().flush(); let mut _input = String::new(); - io::stdin().read_line(&mut _input).expect("error: unable to read user input"); + io::stdin() + .read_line(&mut _input) + .expect("error: unable to read user input"); if _input == "\n" { input.pop(); break; -- cgit v1.2.3