From 9787d847647a000eb8180b0c249a4ba6467512a6 Mon Sep 17 00:00:00 2001 From: Guangcong Luo Date: Thu, 26 Oct 2017 17:42:51 -0500 Subject: [PATCH] Fix stray space in editor config --- src/vs/editor/common/config/commonEditorConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/editor/common/config/commonEditorConfig.ts b/src/vs/editor/common/config/commonEditorConfig.ts index c16944c3abbbe..76613d9b7c401 100644 --- a/src/vs/editor/common/config/commonEditorConfig.ts +++ b/src/vs/editor/common/config/commonEditorConfig.ts @@ -410,7 +410,7 @@ const editorConfiguration: IConfigurationNode = { 'editor.autoIndent': { 'type': 'boolean', 'default': EDITOR_DEFAULTS.autoIndent, - 'description': nls.localize('autoIndent', "Controls if the editor should automatically adjust the indentation when users type, paste or move lines. Indentation rules of the language must be available. ") + 'description': nls.localize('autoIndent', "Controls if the editor should automatically adjust the indentation when users type, paste or move lines. Indentation rules of the language must be available.") }, 'editor.suggestOnTriggerCharacters': { 'type': 'boolean',