diff --git a/_specifications/lsp/3.18/specification.md b/_specifications/lsp/3.18/specification.md index 7c900e3ce..75fa7a0c0 100644 --- a/_specifications/lsp/3.18/specification.md +++ b/_specifications/lsp/3.18/specification.md @@ -400,7 +400,7 @@ An example would be a request sent from the client to the server to request a ho ```typescript interface HoverParams { - textDocument: string; /** The text document's URI in string form */ + textDocument: { uri: string; }; position: { line: uinteger; character: uinteger; }; } ``` @@ -409,7 +409,7 @@ The result of the request would be the hover to be presented. In its simple form ```typescript interface HoverResult { - value: string; + contents: string; } ```