From e2186ceae6eec918bbc2e0faadaa20ac703d87ef Mon Sep 17 00:00:00 2001 From: Anton-4 <17049058+Anton-4@users.noreply.github.com> Date: Fri, 28 Oct 2022 16:24:09 +0200 Subject: [PATCH] added extra newlines --- crates/editor/src/editor/main.rs | 2 +- crates/editor/src/editor/mvc/ed_update.rs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/editor/src/editor/main.rs b/crates/editor/src/editor/main.rs index bcc1772bb4..21ed50912f 100644 --- a/crates/editor/src/editor/main.rs +++ b/crates/editor/src/editor/main.rs @@ -233,7 +233,7 @@ fn run_event_loop(project_dir_path_opt: Option<&Path>) -> Result<(), Box EdModel<'a> { write_to_file(self.file_path, &all_lines_str)?; - println!("save successful!"); + println!("\nsave successful!"); Ok(()) } fn check_file(&mut self) -> EdResult<()> { - println!("Checking file (cargo run check )..."); + println!("\nChecking file (cargo run check )..."); let roc_file_str = path_to_string(self.file_path); @@ -639,7 +639,7 @@ impl<'a> EdModel<'a> { } fn run_file(&mut self) -> EdResult<()> { - println!("Executing file (cargo run )..."); + println!("\nExecuting file (cargo run --release )..."); let roc_file_str = path_to_string(self.file_path);