Skip to content

Commit 28f604d

Browse files
authored
Merge pull request microsoft#158534 from microsoft/tyriar/pin_case
Make 'pinned' casing consistent
2 parents c49f87c + 610220f commit 28f604d

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)