mirror of
https://github.com/notohh/rustlings.git
synced 2024-12-18 06:58:10 -05:00
commit
0432e07864
2 changed files with 5 additions and 5 deletions
|
@ -148,11 +148,11 @@ impl AppState {
|
||||||
|
|
||||||
let mut done_exercises = hash_set_with_capacity(exercises.len());
|
let mut done_exercises = hash_set_with_capacity(exercises.len());
|
||||||
|
|
||||||
for done_exerise_name in lines {
|
for done_exercise_name in lines {
|
||||||
if done_exerise_name.is_empty() {
|
if done_exercise_name.is_empty() {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
done_exercises.insert(done_exerise_name);
|
done_exercises.insert(done_exercise_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (ind, exercise) in exercises.iter_mut().enumerate() {
|
for (ind, exercise) in exercises.iter_mut().enumerate() {
|
||||||
|
|
|
@ -202,7 +202,7 @@ fn check_exercises_unsolved(
|
||||||
|
|
||||||
for (exercise_name, handle) in handles {
|
for (exercise_name, handle) in handles {
|
||||||
let Ok(result) = handle.join() else {
|
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 {
|
match result {
|
||||||
|
@ -300,7 +300,7 @@ fn check_solutions(
|
||||||
for (exercise_info, handle) in info_file.exercises.iter().zip(handles) {
|
for (exercise_info, handle) in info_file.exercises.iter().zip(handles) {
|
||||||
let Ok(check_result) = handle.join() else {
|
let Ok(check_result) = handle.join() else {
|
||||||
bail!(
|
bail!(
|
||||||
"Panic while trying to run the solution of the exericse {}",
|
"Panic while trying to run the solution of the exercise {}",
|
||||||
exercise_info.name,
|
exercise_info.name,
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue