Skip to content

Commit

Permalink
Refine ComparisonRelation order
Browse files Browse the repository at this point in the history
  • Loading branch information
Alkenso committed Apr 7, 2023
1 parent 994075a commit 3b503d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/SwiftConvenience/Common/Extensions - Comparable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ extension Comparable {
}

public enum ComparisonRelation: String, Hashable, CaseIterable {
case equal = "=="
case lessThan = "<"
case lessThanOrEqual = "<="
case greaterThan = ">"
case equal = "=="
case greaterThanOrEqual = ">="
case greaterThan = ">"
}

extension Comparable {
Expand Down

0 comments on commit 3b503d1

Please sign in to comment.