Skip to content

Commit 3bdf2a4

Browse files
committed
Some minor fixes
1 parent abf3cfa commit 3bdf2a4

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

specification.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ interface Location {
289289
}
290290
```
291291

292-
### LocationLink
292+
#### LocationLink
293293

294294
Represents a link between a source and a target location.
295295

@@ -3266,14 +3266,14 @@ export interface SignatureHelpRegistrationOptions extends TextDocumentRegistrati
32663266
32673267
The goto declaration request is sent from the client to the server to resolve the declaration location of a symbol at a given text document position.
32683268

3269-
The result type [`LocationLink](#locationLink)[] got introduce with version 3.14.0 and depends in the corresponding client capability `clientCapabilities.textDocument.declaration.linkSupport`.
3269+
The result type [`LocationLink`](#locationlink)[] got introduce with version 3.14.0 and depends in the corresponding client capability `clientCapabilities.textDocument.declaration.linkSupport`.
32703270

32713271
_Request_:
32723272
* method: 'textDocument/declaration'
32733273
* params: [`TextDocumentPositionParams`](#textdocumentpositionparams)
32743274

32753275
_Response_:
3276-
* result: [`Location`](#location) \| [`Location`](#location)[] \| [`LocationLink](#locationLink)[] \|`null`
3276+
* result: [`Location`](#location) \| [`Location`](#location)[] \| [`LocationLink`](#locationlink)[] \|`null`
32773277
* error: code and message set in case an exception happens during the declaration request.
32783278

32793279
_Registration Options_: `TextDocumentRegistrationOptions`
@@ -3283,15 +3283,15 @@ _Registration Options_: `TextDocumentRegistrationOptions`
32833283
> *Since version 3.14.0*
32843284
32853285
The goto definition request is sent from the client to the server to resolve the definition location of a symbol at a given text document position.
3286-
3287-
The result type [`LocationLink](#locationLink)[] got introduce with version 3.14.0 and depends in the corresponding client capability `clientCapabilities.textDocument.definition.linkSupport`.
3286+
`
3287+
The result type [`LocationLink`](#locationlink)[] got introduce with version 3.14.0 and depends in the corresponding client capability `clientCapabilities.textDocument.definition.linkSupport`.
32883288

32893289
_Request_:
32903290
* method: 'textDocument/definition'
32913291
* params: [`TextDocumentPositionParams`](#textdocumentpositionparams)
32923292

32933293
_Response_:
3294-
* result: [`Location`](#location) \| [`Location`](#location)[] \| [`LocationLink](#locationLink)[] \| `null`
3294+
* result: [`Location`](#location) \| [`Location`](#location)[] \| [`LocationLink`](#locationlink)[] \| `null`
32953295
* error: code and message set in case an exception happens during the definition request.
32963296

32973297
_Registration Options_: `TextDocumentRegistrationOptions`
@@ -3302,14 +3302,14 @@ _Registration Options_: `TextDocumentRegistrationOptions`
33023302
33033303
The goto type definition request is sent from the client to the server to resolve the type definition location of a symbol at a given text document position.
33043304

3305-
The result type [`LocationLink](#locationLink)[] got introduce with version 3.14.0 and depends in the corresponding client capability `clientCapabilities.textDocument.typeDefinition.linkSupport`.
3305+
The result type [`LocationLink`](#locationlink)[] got introduce with version 3.14.0 and depends in the corresponding client capability `clientCapabilities.textDocument.typeDefinition.linkSupport`.
33063306

33073307
_Request_:
33083308
* method: 'textDocument/typeDefinition'
33093309
* params: [`TextDocumentPositionParams`](#textdocumentpositionparams)
33103310

33113311
_Response_:
3312-
* result: [`Location`](#location) \| [`Location`](#location)[] \| [`LocationLink](#locationLink)[] \| `null`
3312+
* result: [`Location`](#location) \| [`Location`](#location)[] \| [`LocationLink`](#locationlink)[] \| `null`
33133313
* error: code and message set in case an exception happens during the definition request.
33143314

33153315
_Registration Options_: `TextDocumentRegistrationOptions`
@@ -3320,14 +3320,14 @@ _Registration Options_: `TextDocumentRegistrationOptions`
33203320
33213321
The goto implementation request is sent from the client to the server to resolve the implementation location of a symbol at a given text document position.
33223322

3323-
The result type [`LocationLink](#locationLink)[] got introduce with version 3.14.0 and depends in the corresponding client capability `clientCapabilities.implementation.typeDefinition.linkSupport`.
3323+
The result type [`LocationLink`](#locationlink)[] got introduce with version 3.14.0 and depends in the corresponding client capability `clientCapabilities.implementation.typeDefinition.linkSupport`.
33243324

33253325
_Request_:
33263326
* method: 'textDocument/implementation'
33273327
* params: [`TextDocumentPositionParams`](#textdocumentpositionparams)
33283328

33293329
_Response_:
3330-
* result: [`Location`](#location) \| [`Location`](#location)[] \| [`LocationLink](#locationLink)[] \| `null`
3330+
* result: [`Location`](#location) \| [`Location`](#location)[] \| [`LocationLink`](#locationlink)[] \| `null`
33313331
* error: code and message set in case an exception happens during the definition request.
33323332

33333333
_Registration Options_: `TextDocumentRegistrationOptions`

0 commit comments

Comments
 (0)