added extra newlines

This commit is contained in:
Anton-4 2022-10-28 16:24:09 +02:00
parent 3229f0fc98
commit e2186ceae6
No known key found for this signature in database
GPG Key ID: A13F4A6E21141925
2 changed files with 4 additions and 4 deletions

View File

@ -233,7 +233,7 @@ fn run_event_loop(project_dir_path_opt: Option<&Path>) -> Result<(), Box<dyn Err
if let Err(e) = input_outcome_res {
print_err(&e)
} else if let Ok(InputOutcome::Ignored) = input_outcome_res {
println!("Input '{}' ignored!", ch);
println!("\nInput '{}' ignored!", ch);
} else {
window.request_redraw()
}

View File

@ -612,13 +612,13 @@ impl<'a> 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 <file>)...");
println!("\nChecking file (cargo run check <file>)...");
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 <file>)...");
println!("\nExecuting file (cargo run --release <file>)...");
let roc_file_str = path_to_string(self.file_path);