Fix typos

This commit is contained in:
Nahor
2024-10-14 10:17:17 -07:00
parent 990a722852
commit f33ba139b4
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -202,7 +202,7 @@ fn check_exercises_unsolved(
for (exercise_name, handle) in handles {
let Ok(result) = handle.join() else {
bail!("Panic while trying to run the exericse {exercise_name}");
bail!("Panic while trying to run the exercise {exercise_name}");
};
match result {
@@ -300,7 +300,7 @@ fn check_solutions(
for (exercise_info, handle) in info_file.exercises.iter().zip(handles) {
let Ok(check_result) = handle.join() else {
bail!(
"Panic while trying to run the solution of the exericse {}",
"Panic while trying to run the solution of the exercise {}",
exercise_info.name,
);
};