Skip to content

Commit f8c20ec

Browse files
committed
Adjustment for rename SyntaxClassification.floatingLiteral -> floatLiteral in SwiftSyntax
1 parent 8cb76ba commit f8c20ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SourceKitLSP/DocumentTokens.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ extension SyntaxClassification {
9797
return (.identifier, [])
9898
case .operatorIdentifier:
9999
return (.operator, [])
100-
case .integerLiteral, .floatingLiteral:
100+
case .integerLiteral, .floatLiteral:
101101
return (.number, [])
102102
case .stringLiteral:
103103
return (.string, [])

0 commit comments

Comments
 (0)