diff --git a/Sources/WrkstrmMain/CustomCollections/Enums/SortEnum.swift b/Sources/WrkstrmMain/CustomCollections/Enums/SortEnum.swift index 468789d..43adf8a 100644 --- a/Sources/WrkstrmMain/CustomCollections/Enums/SortEnum.swift +++ b/Sources/WrkstrmMain/CustomCollections/Enums/SortEnum.swift @@ -45,7 +45,7 @@ public struct Sort { } /// A convinience comparator combinator given an array of simple comparators. - @_specialize(where Type:_NativeClass) + @_specialize(where Type: _NativeClass) public static func by(_ comparators: [Comparator]) -> Comparator { { for comparator in comparators { @@ -58,7 +58,7 @@ public struct Sort { /// A sort struct combinator. Takes in a sequence of Sort structs and returns one comparator /// function. - @_specialize(where Type:_NativeClass) + @_specialize(where Type: _NativeClass) public static func by(_ comparators: Sort...) -> Comparator { { for order in comparators { @@ -71,7 +71,7 @@ public struct Sort { /// A sort struct combinator. Takes in an array of Sort structs and returns one comparator /// function. - @_specialize(where Type:_NativeClass) + @_specialize(where Type: _NativeClass) public static func by(_ comparators: [Sort]) -> Comparator { { for order in comparators {