Skip to content

Commit

Permalink
Fix order of exercies
Browse files Browse the repository at this point in the history
  • Loading branch information
Pursottam6003 committed Apr 26, 2023
1 parent 6a90478 commit 48bc118
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
const MasteryModels = new Set([
'do_all',
'm_of_n',
'num_correct_in_a_row_10',
'num_correct_in_a_row_2',
'num_correct_in_a_row_3',
'num_correct_in_a_row_5',
'num_correct_in_a_row_10',
]);

export default MasteryModels;
Expand All @@ -15,8 +15,8 @@ export const MasteryModelsList = Array.from(MasteryModels);
export const MasteryModelsNames = {
DO_ALL: 'do_all',
M_OF_N: 'm_of_n',
NUM_CORRECT_IN_A_ROW_10: 'num_correct_in_a_row_10',
NUM_CORRECT_IN_A_ROW_2: 'num_correct_in_a_row_2',
NUM_CORRECT_IN_A_ROW_3: 'num_correct_in_a_row_3',
NUM_CORRECT_IN_A_ROW_5: 'num_correct_in_a_row_5',
NUM_CORRECT_IN_A_ROW_10: 'num_correct_in_a_row_10',
};

0 comments on commit 48bc118

Please sign in to comment.