Skip to content

Commit c5ad421

Browse files
committed
Fix 5.6 compile
1 parent f80b39e commit c5ad421

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/ReleaseNotesCore/ReleaseNotes.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ struct ReleaseNotes: AsyncParsableCommand {
107107
}
108108

109109

110-
private extension [PackageId: URL] {
110+
private extension Dictionary where Key == PackageId, Value == URL {
111111
subscript(caseIgnoring packageId: PackageId) -> URL? {
112112
first(where: { $0.key.lowercased() == packageId.lowercased() })?.value
113113
}

0 commit comments

Comments
 (0)