Skip to content

Commit 30ecf8e

Browse files
committed
Minor changes
1 parent 01e28f0 commit 30ecf8e

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66

77
## [1.1.0] - 2020-04-19
88

9-
### Improvements:
9+
### Improved:
1010

11-
* Added a new setting for disabling workspace searching.
11+
* New setting for disabling workspace searching.
1212
* More default hints are provided for the typing module.
13-
* Overall speed improvements.
13+
* Overall speed.
1414

15-
### Fixes:
15+
### Fixed:
1616

1717
* Setting the workspace search limit to 0 not working.
1818

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,18 @@ Provides type hint auto-completion for Python, with completion items for built-i
2020
|---|---|---|
2121
| workspace.search.limit | _(number)_ The maximum number of files searched when estimating types for a parameter. If 0, only the current editor document is searched, which increases speed but can reduce estimation accuracy. | 20
2222

23-
## Installation
24-
25-
The extension can found on the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=njqdev.vscode-python-typehint).
26-
2723
## Known Issues
2824

2925
* The difference between function and class constructor calls when detecting types is determined by the first letter being upper case (unless the class or function is defined in the currently edited document).
3026

27+
## Installation
28+
29+
The extension can found on the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=njqdev.vscode-python-typehint).
3130

3231
-------------------------------------------------------------------------------------------
3332

3433

3534
<p>
36-
<a href="https://img.shields.io/github/v/release/njqdev/vscode-python-typehint.svg?style=flat">
37-
<img src="https://img.shields.io/github/v/release/njqdev/vscode-python-typehint.svg?style=flat" />
38-
</a>
3935
<a href="https://img.shields.io/visual-studio-marketplace/i/njqdev.vscode-python-typehint">
4036
<img src="https://img.shields.io/visual-studio-marketplace/i/njqdev.vscode-python-typehint" alt="Installs"></img>
4137
</a>

src/completionProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export abstract class CompletionProvider {
2121
protected bottomOfListSortPrefix: number = 999;
2222

2323
/**
24-
* Push type hints to the bottom of an array of completion items.
24+
* Push type hints to the end of an array of completion items.
2525
*/
2626
protected pushHintsToItems(typeHints: string[], completionItems: CompletionItem[]) {
2727
const sortTextPrefix = this.bottomOfListSortPrefix.toString();

0 commit comments

Comments
 (0)