mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 10:38:59 +01:00
Use consistent casing
This commit is contained in:
@@ -376,7 +376,7 @@ export default class TypeScriptCompletionItemProvider implements CompletionItemP
|
||||
documentation.appendMarkdown('\n\n');
|
||||
}
|
||||
|
||||
Previewer.addmarkdownDocumentation(documentation, detail.documentation, detail.tags);
|
||||
Previewer.addMarkdownDocumentation(documentation, detail.documentation, detail.tags);
|
||||
item.documentation = documentation;
|
||||
|
||||
if (detail.codeActions && detail.codeActions.length) {
|
||||
|
||||
@@ -49,11 +49,11 @@ export function markdownDocumentation(
|
||||
tags: Proto.JSDocTagInfo[]
|
||||
): MarkdownString {
|
||||
const out = new MarkdownString();
|
||||
addmarkdownDocumentation(out, documentation, tags);
|
||||
addMarkdownDocumentation(out, documentation, tags);
|
||||
return out;
|
||||
}
|
||||
|
||||
export function addmarkdownDocumentation(
|
||||
export function addMarkdownDocumentation(
|
||||
out: MarkdownString,
|
||||
documentation: Proto.SymbolDisplayPart[],
|
||||
tags: Proto.JSDocTagInfo[]
|
||||
|
||||
Reference in New Issue
Block a user