summaryrefslogtreecommitdiff
path: root/src/macro_processor/main.rs
diff options
context:
space:
mode:
authorQrius <[email protected]>2024-09-26 00:11:05 +0200
committerQrius <[email protected]>2024-09-26 00:11:05 +0200
commitfee06958744756e280cdf83c3ffeade8057fcaff (patch)
treecf53f3979f04dc77beaf40255a0f91a5ed0c9ad6 /src/macro_processor/main.rs
parent5826c8ce131c4b038c94590734ed12e6dc3d0680 (diff)
downloadskaldpress-fee06958744756e280cdf83c3ffeade8057fcaff.tar.gz
skaldpress-fee06958744756e280cdf83c3ffeade8057fcaff.zip
rustfmt
Diffstat (limited to 'src/macro_processor/main.rs')
-rw-r--r--src/macro_processor/main.rs4
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;