From e28aab76b29f18ea2b883277580deb62f8355a54 Mon Sep 17 00:00:00 2001 From: QuietMisdreavus Date: Tue, 21 Dec 2021 13:22:50 -0700 Subject: [PATCH] Update Sources/SymbolKit/SymbolGraph/Symbol/Symbol+KindIdentifier.swift Co-authored-by: Kyle <43724855+Kyle-Ye@users.noreply.github.com> --- .../SymbolGraph/Symbol/KindIdentifier.swift | 42 +++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift b/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift index 10e5ecb..8f67de7 100644 --- a/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift +++ b/Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift @@ -44,27 +44,27 @@ 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`, - .snippet, - .snippetGroup, - .`struct`, - .`subscript`, - .`typeMethod`, - .`typeProperty`, - .`typeSubscript`, - .`typealias`, - .`var`, - .`module` + .associatedtype, + .class, + .deinit, + .enum, + .case, + .func, + .operator, + .`init`, + .method, + .property, + .protocol, + .snippet, + .snippetGroup, + .struct, + .subscript, + .typeMethod, + .typeProperty, + .typeSubscript, + .typealias, + .var, + .module, ] /// Check the given identifier string against the list of known identifiers.