File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -148,11 +148,11 @@ impl AppState {
148
148
149
149
let mut done_exercises = hash_set_with_capacity ( exercises. len ( ) ) ;
150
150
151
- for done_exerise_name in lines {
152
- if done_exerise_name . is_empty ( ) {
151
+ for done_exercise_name in lines {
152
+ if done_exercise_name . is_empty ( ) {
153
153
break ;
154
154
}
155
- done_exercises. insert ( done_exerise_name ) ;
155
+ done_exercises. insert ( done_exercise_name ) ;
156
156
}
157
157
158
158
for ( ind, exercise) in exercises. iter_mut ( ) . enumerate ( ) {
Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ fn check_exercises_unsolved(
202
202
203
203
for ( exercise_name, handle) in handles {
204
204
let Ok ( result) = handle. join ( ) else {
205
- bail ! ( "Panic while trying to run the exericse {exercise_name}" ) ;
205
+ bail ! ( "Panic while trying to run the exercise {exercise_name}" ) ;
206
206
} ;
207
207
208
208
match result {
@@ -300,7 +300,7 @@ fn check_solutions(
300
300
for ( exercise_info, handle) in info_file. exercises . iter ( ) . zip ( handles) {
301
301
let Ok ( check_result) = handle. join ( ) else {
302
302
bail ! (
303
- "Panic while trying to run the solution of the exericse {}" ,
303
+ "Panic while trying to run the solution of the exercise {}" ,
304
304
exercise_info. name,
305
305
) ;
306
306
} ;
You can’t perform that action at this time.
0 commit comments