diff --git a/src/state.rs b/src/state.rs index 5b70895..5970ad1 100644 --- a/src/state.rs +++ b/src/state.rs @@ -142,7 +142,7 @@ impl State { pub fn move_cursor_to(&mut self, row: usize, col: usize) { assert!( row < 9 && col < 9, - "[-] Error: State::go_to: Can't move to row/column out of bounds." + "[!] Error: State::go_to: Can't move to row/column out of bounds." ); self.cur_row = row; self.cur_col = col; diff --git a/src/ui.rs b/src/ui.rs index 2e79567..3d46413 100644 --- a/src/ui.rs +++ b/src/ui.rs @@ -37,9 +37,9 @@ where height, }; - enable_raw_mode().expect("[-]: Error: ui::init: Failed to enable raw mode."); + enable_raw_mode().expect("[!]: Error: ui::init: Failed to enable raw mode."); queue!(screen.ostream, EnterAlternateScreen) - .expect("[-]: Error: ui::init: Failed to enter alternate screen."); + .expect("[!]: Error: ui::init: Failed to enter alternate screen."); screen } @@ -56,7 +56,7 @@ where if height < 14 || width < 54 { self.clear()?; self.deinit(); - eprintln!("[-]: Error: ui::update_dimensions: Terminal size too small to display UI."); + eprintln!("[!]: Error: ui::update_dimensions: Terminal size too small to display UI."); return Err(io::Error::from(io::ErrorKind::Other)); }