diff --git a/Sources/LanguageServerProtocol/LanguageFeatures/InlayHint.swift b/Sources/LanguageServerProtocol/LanguageFeatures/InlayHint.swift index 0b8b92c..f25f192 100644 --- a/Sources/LanguageServerProtocol/LanguageFeatures/InlayHint.swift +++ b/Sources/LanguageServerProtocol/LanguageFeatures/InlayHint.swift @@ -57,16 +57,16 @@ public struct InlayHintParams: Codable, Hashable, Sendable { public struct InlayHintLabelPart: Codable, Hashable, Sendable { public var value: String - public var tooltop: TwoTypeOption? + public var tooltip: TwoTypeOption? public var location: Location? public var command: Command? public init( - value: String, tooltop: TwoTypeOption? = nil, + value: String, tooltip: TwoTypeOption? = nil, location: Location? = nil, command: Command? = nil ) { self.value = value - self.tooltop = tooltop + self.tooltip = tooltip self.location = location self.command = command }