Skip to content

Commit ac8ab91

Browse files
authored
Merge pull request #680 from zac/namecatalog-sort-fix
Fix for Named Asset Sort Issues
2 parents 4076c62 + c64558d commit ac8ab91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Sources/RswiftCore/ResourceTypes/NameCatalog.swift

+1-1
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)