diff options
author | Aleksey Kladov <[email protected]> | 2020-05-25 13:56:26 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-05-25 13:56:26 +0100 |
commit | a30bdd9795770329e4562d8bfca60ebe2e52dea1 (patch) | |
tree | 510b580723f06fd3ae1e4c641001afa82a426b60 /docs | |
parent | 8686d0b0ac765c2144b22b897de1d8fda68ecc6e (diff) |
Cleanup lsp extensions on the client side
Diffstat (limited to 'docs')
-rw-r--r-- | docs/dev/lsp-extensions.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/lsp-extensions.md b/docs/dev/lsp-extensions.md index e4b9fb2c2..48147b173 100644 --- a/docs/dev/lsp-extensions.md +++ b/docs/dev/lsp-extensions.md | |||
@@ -318,7 +318,7 @@ Primarily for debugging, but very useful for all people working on rust-analyzer | |||
318 | ```typescript | 318 | ```typescript |
319 | interface ExpandMacroParams { | 319 | interface ExpandMacroParams { |
320 | textDocument: TextDocumentIdentifier, | 320 | textDocument: TextDocumentIdentifier, |
321 | position?: Position, | 321 | position: Position, |
322 | } | 322 | } |
323 | ``` | 323 | ``` |
324 | 324 | ||