Show the current exercise path

This commit is contained in:
mo8it
2024-04-10 14:29:31 +02:00
parent 62e92476e6
commit a59acf8835
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ pub fn progress_bar(progress: u16, total: u16, line_width: u16) -> Result<String
write!(line, "{}", red_part.red()).unwrap();
}
write!(line, "] {progress:>3}/{total} exercises").unwrap();
writeln!(line, "] {progress:>3}/{total} exercises").unwrap();
Ok(line)
}