Skip to content

Commit 610220f

Browse files
committed
Make 'pinned' casing consistent
Part of microsoft#154388
1 parent 8316ba1 commit 610220f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/quickinput/browser/quickPickPin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function _formatPinnedItems(storageKey: string, quickPick: IQuickPick<IQuickPick
4242
pinnedItems = getPinnedItems(storageKey, storageService);
4343
}
4444
if (pinnedItems.length) {
45-
formattedItems.push({ type: 'separator', label: localize("terminal.commands.pinned", 'Pinned') });
45+
formattedItems.push({ type: 'separator', label: localize("terminal.commands.pinned", 'pinned') });
4646
}
4747
const pinnedIds = new Set();
4848
for (const itemToFind of pinnedItems) {

0 commit comments

Comments
 (0)