diff --git a/Sources/SymbolKit/SymbolGraph/Symbol/Symbol+KindIdentifier.swift b/Sources/SymbolKit/SymbolGraph/Symbol/Symbol+KindIdentifier.swift index 1cb109a..91414d2 100644 --- a/Sources/SymbolKit/SymbolGraph/Symbol/Symbol+KindIdentifier.swift +++ b/Sources/SymbolKit/SymbolGraph/Symbol/Symbol+KindIdentifier.swift @@ -42,25 +42,25 @@ extension SymbolGraph.Symbol { public static let module = KindIdentifier(rawIdentifier: "module") public static let allCases: [KindIdentifier] = [ - .`associatedtype`, - .`class`, - .`deinit`, - .`enum`, - .`case`, - .`func`, - .`operator`, - .`init`, - .`method`, - .`property`, - .`protocol`, - .`struct`, - .`subscript`, - .`typeMethod`, - .`typeProperty`, - .`typeSubscript`, - .`typealias`, - .`var`, - .`module` + .associatedtype, + .class, + .deinit, + .enum, + .case, + .func, + .operator, + .`init`, + .method, + .property, + .protocol, + .struct, + .subscript, + .typeMethod, + .typeProperty, + .typeSubscript, + .typealias, + .var, + .module, ] /// Check the given identifier string against the list of known identifiers.