We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2076c0a commit ae08924Copy full SHA for ae08924
extensions/markdown-language-features/src/features/documentLinkProvider.ts
@@ -112,11 +112,11 @@ type CodeInDocument = {
112
/**
113
* code blocks and fences each represented by [line_start,line_end).
114
*/
115
- multiline: [number, number][];
+ readonly multiline: ReadonlyArray<[number, number]>;
116
117
* inline code spans each represented by {@link vscode.Range}.
118
119
- inline: vscode.Range[];
+ readonly inline: readonly vscode.Range[];
120
};
121
122
async function findCode(document: vscode.TextDocument, engine: MarkdownEngine): Promise<CodeInDocument> {
0 commit comments