Skip to content

Commit 3527040

Browse files
authored
Fix QuickPickItem JSDoc links in vscode.d.ts (microsoft#164474)
1 parent ecb3421 commit 3527040

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/vscode-dts/vscode.d.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1751,8 +1751,9 @@ declare module 'vscode' {
17511751

17521752
/**
17531753
* Optional flag indicating if this item is picked initially. This is only honored when using
1754-
* the {@link window.showQuickPick()} API. To do the same thing with the {@link window.createQuickPick()} API,
1755-
* simply set the {@link QuickPick.selectedItems} to the items you want picked initially.
1754+
* the {@link window.showQuickPick showQuickPick()} API. To do the same thing with
1755+
* the {@link window.createQuickPick createQuickPick()} API, simply set the {@link QuickPick.selectedItems}
1756+
* to the items you want picked initially.
17561757
* (*Note:* This is only honored when the picker allows multiple selections.)
17571758
*
17581759
* @see {@link QuickPickOptions.canPickMany}
@@ -1771,8 +1772,8 @@ declare module 'vscode' {
17711772
/**
17721773
* Optional buttons that will be rendered on this particular item. These buttons will trigger
17731774
* an {@link QuickPickItemButtonEvent} when clicked. Buttons are only rendered when using a quickpick
1774-
* created by the {@link window.createQuickPick()} API. Buttons are not rendered when using
1775-
* the {@link window.showQuickPick()} API.
1775+
* created by the {@link window.createQuickPick createQuickPick()} API. Buttons are not rendered when using
1776+
* the {@link window.showQuickPick showQuickPick()} API.
17761777
*
17771778
* Note: this property is ignored when {@link QuickPickItem.kind kind} is set to {@link QuickPickItemKind.Separator}
17781779
*/

0 commit comments

Comments
 (0)