We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 107ffa3 commit e503f80Copy full SHA for e503f80
Sources/Availability/Availability.swift
@@ -34,7 +34,8 @@ extension Availability
34
@inlinable public
35
var isGenerallyRecommended:Bool
36
{
37
- self.universal?.isGenerallyRecommended ?? true &&
38
- self.agnostic[.swift]?.isGenerallyRecommended ?? true
+ self.universal?.isGenerallyRecommended ?? true
+ && self.agnostic[.swift]?.isGenerallyRecommended ?? true
39
+ && self.agnostic[.swiftPM]?.isGenerallyRecommended ?? true
40
}
41
0 commit comments