Skip to content

Commit

Permalink
Merge pull request #787 from ahoppen/ahoppen/float-literal
Browse files Browse the repository at this point in the history
Adjustment for rename `SyntaxClassification.floatingLiteral` -> `floatLiteral` in SwiftSyntax
  • Loading branch information
ahoppen authored Aug 5, 2023
2 parents 7385eb7 + f8c20ec commit 9c8e866
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/SourceKitLSP/DocumentTokens.swift
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ extension SyntaxClassification {
return (.identifier, [])
case .operatorIdentifier:
return (.operator, [])
case .integerLiteral, .floatingLiteral:
case .integerLiteral, .floatLiteral:
return (.number, [])
case .stringLiteral:
return (.string, [])
Expand Down

0 comments on commit 9c8e866

Please sign in to comment.