Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _specifications/lsp/3.18/specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -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; };
}
```
Expand All @@ -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;
}
```

Expand Down