From 76ba911c4d8eac995697a7aeec80bfe3a99500f6 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Tue, 3 Oct 2017 12:08:27 -0400 Subject: [PATCH] Fix small typo --- src/vs/workbench/electron-browser/main.contribution.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/electron-browser/main.contribution.ts b/src/vs/workbench/electron-browser/main.contribution.ts index d910b735952e6..144547ace89fa 100644 --- a/src/vs/workbench/electron-browser/main.contribution.ts +++ b/src/vs/workbench/electron-browser/main.contribution.ts @@ -181,7 +181,7 @@ let workbenchProperties: { [path: string]: IJSONSchema; } = { }, 'workbench.commandPalette.history': { 'type': 'number', - 'description': nls.localize('commandHistory', "Controls if the number of recently used commands to keep in history for the command palette. Set to 0 to disable command history."), + 'description': nls.localize('commandHistory', "Controls the number of recently used commands to keep in history for the command palette. Set to 0 to disable command history."), 'default': 50 }, 'workbench.commandPalette.preserveInput': { @@ -438,4 +438,4 @@ configurationRegistry.registerConfiguration({ 'description': nls.localize('zenMode.restore', "Controls if a window should restore to zen mode if it was exited in zen mode.") } } -}); \ No newline at end of file +});