Skip to content

Commit b91e67b

Browse files
committed
1 parent 283545d commit b91e67b

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/vs/vscode.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3203,8 +3203,8 @@ declare module 'vscode' {
32033203

32043204
/**
32053205
* Represents semantic tokens, either in a range or in an entire document.
3206-
* See [provideDocumentSemanticTokens](#DocumentSemanticTokensProvider.provideDocumentSemanticTokens) for an explanation of the format.
3207-
* See `SemanticTokensBuilder` for a helper to create an instance.
3206+
* @see [provideDocumentSemanticTokens](#DocumentSemanticTokensProvider.provideDocumentSemanticTokens) for an explanation of the format.
3207+
* @see [SemanticTokensBuilder](#SemanticTokensBuilder) for a helper to create an instance.
32083208
*/
32093209
export class SemanticTokens {
32103210
/**
@@ -3215,7 +3215,7 @@ declare module 'vscode' {
32153215
readonly resultId?: string;
32163216
/**
32173217
* The actual tokens data.
3218-
* See [provideDocumentSemanticTokens](#DocumentSemanticTokensProvider.provideDocumentSemanticTokens) for an explanation of the format.
3218+
* @see [provideDocumentSemanticTokens](#DocumentSemanticTokensProvider.provideDocumentSemanticTokens) for an explanation of the format.
32193219
*/
32203220
readonly data: Uint32Array;
32213221

@@ -3224,7 +3224,7 @@ declare module 'vscode' {
32243224

32253225
/**
32263226
* Represents edits to semantic tokens.
3227-
* See [provideDocumentSemanticTokensEdits](#DocumentSemanticTokensProvider.provideDocumentSemanticTokensEdits) for an explanation of the format.
3227+
* @see [provideDocumentSemanticTokensEdits](#DocumentSemanticTokensProvider.provideDocumentSemanticTokensEdits) for an explanation of the format.
32283228
*/
32293229
export class SemanticTokensEdits {
32303230
/**
@@ -3244,7 +3244,7 @@ declare module 'vscode' {
32443244

32453245
/**
32463246
* Represents an edit to semantic tokens.
3247-
* See [provideDocumentSemanticTokensEdits](#DocumentSemanticTokensProvider.provideDocumentSemanticTokensEdits) for an explanation of the format.
3247+
* @see [provideDocumentSemanticTokensEdits](#DocumentSemanticTokensProvider.provideDocumentSemanticTokensEdits) for an explanation of the format.
32483248
*/
32493249
export class SemanticTokensEdit {
32503250
/**
@@ -3397,7 +3397,7 @@ declare module 'vscode' {
33973397
*/
33983398
export interface DocumentRangeSemanticTokensProvider {
33993399
/**
3400-
* See [provideDocumentSemanticTokens](#DocumentSemanticTokensProvider.provideDocumentSemanticTokens).
3400+
* @see [provideDocumentSemanticTokens](#DocumentSemanticTokensProvider.provideDocumentSemanticTokens).
34013401
*/
34023402
provideDocumentRangeSemanticTokens(document: TextDocument, range: Range, token: CancellationToken): ProviderResult<SemanticTokens>;
34033403
}

0 commit comments

Comments
 (0)