Make Ferris more symmetrical

This commit is contained in:
mo8it 2026-04-17 15:34:18 +02:00
parent 848e3f9294
commit 60edde0f59

View File

@ -547,7 +547,7 @@ impl AppState {
pub fn render_final_message(&self, stdout: &mut StdoutLock) -> Result<()> { pub fn render_final_message(&self, stdout: &mut StdoutLock) -> Result<()> {
clear_terminal(stdout)?; clear_terminal(stdout)?;
stdout.write_all(FENISH_LINE.as_bytes())?; stdout.write_all(FINISH_LINE.as_bytes())?;
let final_message = self.final_message.trim_ascii(); let final_message = self.final_message.trim_ascii();
if !final_message.is_empty() { if !final_message.is_empty() {
@ -583,25 +583,25 @@ impl AppState {
const BAD_INDEX_ERR: &str = "The current exercise index is higher than the number of exercises"; const BAD_INDEX_ERR: &str = "The current exercise index is higher than the number of exercises";
const STATE_FILE_HEADER: &[u8] = b"DON'T EDIT THIS FILE!\n\n"; const STATE_FILE_HEADER: &[u8] = b"DON'T EDIT THIS FILE!\n\n";
const FENISH_LINE: &str = "+----------------------------------------------------+ const FINISH_LINE: &str = "+----------------------------------------------------+
| You made it to the Fe-nish line! | | You made it to the finish line! |
+-------------------------- ------------------------+ +-------------------------- ------------------------+
\\/\x1b[31m \\/\x1b[31m
\x1b[0m \x1b[0m
"; ";