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 {
148148
149149 let mut done_exercises = hash_set_with_capacity ( exercises. len ( ) ) ;
150150
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 ( ) {
153153 break ;
154154 }
155- done_exercises. insert ( done_exerise_name ) ;
155+ done_exercises. insert ( done_exercise_name ) ;
156156 }
157157
158158 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(
202202
203203 for ( exercise_name, handle) in handles {
204204 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}" ) ;
206206 } ;
207207
208208 match result {
@@ -300,7 +300,7 @@ fn check_solutions(
300300 for ( exercise_info, handle) in info_file. exercises . iter ( ) . zip ( handles) {
301301 let Ok ( check_result) = handle. join ( ) else {
302302 bail ! (
303- "Panic while trying to run the solution of the exericse {}" ,
303+ "Panic while trying to run the solution of the exercise {}" ,
304304 exercise_info. name,
305305 ) ;
306306 } ;
You can’t perform that action at this time.
0 commit comments