Skip to content

Commit 714ea52

Browse files
author
Mikhail Arkhipov
authored
Fix typo in completion details (#396)
* Basic tokenizer * Fixed property names * Tests, round I * Tests, round II * tokenizer test * Remove temorary change * Fix merge issue * Merge conflict * Merge conflict * Completion test * Fix last line * Fix javascript math * Make test await for results * Add license headers * Rename definitions to types * License headers * Fix typo in completion details (typo)
1 parent f28db5d commit 714ea52

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/providers/itemInfoSource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export class ItemInfoSource {
117117
}
118118

119119
const descriptionWithHighlightedCode = this.highlightCode(dnd[1]);
120-
const tooltip = new vscode.MarkdownString(['y```python', signature, '```', descriptionWithHighlightedCode].join(EOL));
120+
const tooltip = new vscode.MarkdownString(['```python', signature, '```', descriptionWithHighlightedCode].join(EOL));
121121
infos.push(new LanguageItemInfo(tooltip, dnd[0], new vscode.MarkdownString(dnd[1])));
122122

123123
const key = signature + lines.join('');

src/test/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ const options: MochaSetupOptions & { retries: number } = {
1212
ui: 'tdd',
1313
useColors: true,
1414
timeout: 25000,
15-
retries: 3,
16-
grep: 'Autocomplete'
15+
retries: 3
1716
};
1817
testRunner.configure(options);
1918
module.exports = testRunner;

0 commit comments

Comments
 (0)