summaryrefslogtreecommitdiff
path: root/src/dev/check.rs
diff options
context:
space:
mode:
authorNahor <nahor.j+github@gmail.com>2024-10-14 10:13:30 -0700
committerNahor <nahor.j+github@gmail.com>2024-10-14 10:17:17 -0700
commitf33ba139b460ee433c6738ab050534b951436d6d (patch)
treec589966857a502e41226c6f2bbae70db02b7f6c7 /src/dev/check.rs
parent990a722852ab22b55db342f93ebe03e6ed122f7f (diff)
Fix typos
Diffstat (limited to 'src/dev/check.rs')
-rw-r--r--src/dev/check.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dev/check.rs b/src/dev/check.rs
index bd73ec8..119fed5 100644
--- a/src/dev/check.rs
+++ b/src/dev/check.rs
@@ -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,
);
};