diff options
author | Qrius <[email protected]> | 2024-09-26 00:11:05 +0200 |
---|---|---|
committer | Qrius <[email protected]> | 2024-09-26 00:11:05 +0200 |
commit | fee06958744756e280cdf83c3ffeade8057fcaff (patch) | |
tree | cf53f3979f04dc77beaf40255a0f91a5ed0c9ad6 | |
parent | 5826c8ce131c4b038c94590734ed12e6dc3d0680 (diff) | |
download | skaldpress-fee06958744756e280cdf83c3ffeade8057fcaff.tar.gz skaldpress-fee06958744756e280cdf83c3ffeade8057fcaff.zip |
rustfmt
-rw-r--r-- | src/macro_processor/main.rs | 4 |
1 files changed, 3 insertions, 1 deletions
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; |