Skip to content

Commit c64558d

Browse files
committed
Fixed incorrect variable reference in NameCatalog comparison function
1 parent 4076c62 commit c64558d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/RswiftCore/ResourceTypes/NameCatalog.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ struct NameCatalog: Hashable, Comparable {
1818
}
1919

2020
static func < (lhs: NameCatalog, rhs: NameCatalog) -> Bool {
21-
lhs.name < lhs.name
21+
lhs.name < rhs.name
2222
}
2323
}

0 commit comments

Comments
 (0)