Skip to content

Commit

Permalink
Adjustment for rename SyntaxClassification.floatingLiteral -> `floa…
Browse files Browse the repository at this point in the history
…tLiteral` in SwiftSyntax
  • Loading branch information
ahoppen committed Aug 2, 2023
1 parent 8cb76ba commit f8c20ec
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 f8c20ec

Please sign in to comment.