Skip to content

Commit 9c8e866

Browse files
authored
Merge pull request #787 from ahoppen/ahoppen/float-literal
Adjustment for rename `SyntaxClassification.floatingLiteral` -> `floatLiteral` in SwiftSyntax
2 parents 7385eb7 + f8c20ec commit 9c8e866

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)