Skip to content

Commit

Permalink
Corrected spelling error.
Browse files Browse the repository at this point in the history
  • Loading branch information
avianrr committed Oct 5, 2018
1 parent 33f515e commit a3d3341
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/EVEMon.Common/Enumerations/PlanEntrySort.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ public enum PlanEntrySort
PlanType,
Notes,
SkillPointsRequired,
OmegeRequired
OmegaRequired
}
}
2 changes: 1 addition & 1 deletion src/EVEMon.Common/Helpers/PlanScratchpad.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ internal void SimpleSort(PlanEntrySort sort, bool reverseOrder)
case PlanEntrySort.SkillPointsRequired:
Items.StableSort(PlanEntrySorter.CompareBySkillPointsRequired);
break;
case PlanEntrySort.OmegeRequired:
case PlanEntrySort.OmegaRequired:
Items.StableSort(PlanEntrySorter.CompareByOmegaRequired);
break;
default:
Expand Down
2 changes: 1 addition & 1 deletion src/EVEMon/SkillPlanner/PlanEditorControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1339,7 +1339,7 @@ private static PlanEntrySort GetPlanSort(ColumnHeader header)
case PlanColumn.SkillPointsRequired:
return PlanEntrySort.SkillPointsRequired;
case PlanColumn.OmegaRequired:
return PlanEntrySort.OmegeRequired;
return PlanEntrySort.OmegaRequired;
default:
return PlanEntrySort.None;
}
Expand Down

0 comments on commit a3d3341

Please sign in to comment.