Skip to content

Commit

Permalink
fix(st_exercise): removed irrelevant rule
Browse files Browse the repository at this point in the history
removed the falsum rule since it is an extra button already
  • Loading branch information
Kaeldehta committed Mar 13, 2022
1 parent 31e33c4 commit c4117d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exercises/st_exercise/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const propRules = ["NC", "ND", "D", "C", "MC", "NMC", "NB", "B", "DN", "F"] as const;
export const propRules = ["NC", "ND", "D", "C", "MC", "NMC", "NB", "B", "DN"] as const;
export const predRules = [...propRules, "UQ", "NUQ", "EQ", "NEQ", "IS", "NIS"] as const;
export const propRulesOptions = propRules.map(r => ({label: r, value: r, count: 1}))
export const predRulesOptions = predRules.map(r => ({label: r, value: r, count: 1}))

0 comments on commit c4117d5

Please sign in to comment.