summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-04-12 19:30:36 +0200
committermo8it <mo8it@proton.me>2024-04-12 19:30:36 +0200
commit757723a7e8db5822df3b7ca56012448ca292ce4f (patch)
tree6e496ed36394e22db70e03352e8298da05ad18f8
parentff4c7529846ba13ecb2e90616ff8fd7a9ee87164 (diff)
Add missing newline
-rw-r--r--src/run.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/run.rs b/src/run.rs
index ebe4f96..4748549 100644
--- a/src/run.rs
+++ b/src/run.rs
@@ -21,7 +21,7 @@ pub fn run(app_state: &mut AppState) -> Result<()> {
}
stdout.write_fmt(format_args!(
- "{}{}",
+ "{}{}\n",
"✓ Successfully ran ".green(),
exercise.path.to_string_lossy().green(),
))?;