summaryrefslogtreecommitdiff
path: root/src/dev
diff options
context:
space:
mode:
authorMo <76752051+mo8it@users.noreply.github.com>2024-10-14 20:06:30 +0200
committerGitHub <noreply@github.com>2024-10-14 20:06:30 +0200
commit0432e07864d5ee4d2bac1954c965b2077c0447c6 (patch)
treec589966857a502e41226c6f2bbae70db02b7f6c7 /src/dev
parent990a722852ab22b55db342f93ebe03e6ed122f7f (diff)
parentf33ba139b460ee433c6738ab050534b951436d6d (diff)
Merge pull request #2130 from Nahor/typo
Fix typos
Diffstat (limited to 'src/dev')
-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,
);
};