Skip to content

Commit 259270e

Browse files
committed
Fix the actual issue, too
1 parent 6143e7e commit 259270e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SemanticVersion/SemanticVersion.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ extension Array: @retroactive Comparable where Element == SemanticVersion.PreRel
132132
}
133133
}
134134
#else
135-
extension Array: @retroactive Comparable where Element == SemanticVersion.PreReleaseIdentifier {
135+
extension Array: Comparable where Element == SemanticVersion.PreReleaseIdentifier {
136136
public static func < (lhs: Self, rhs: Self) -> Bool {
137137
// Per section 11.4 of the semver spec, compare left to right until a
138138
// difference is found.

0 commit comments

Comments
 (0)