From da77fb3b2af121140e0c5af92826de55a73b26a0 Mon Sep 17 00:00:00 2001 From: Jackson Kearl Date: Thu, 21 Jun 2018 12:01:35 -0700 Subject: [PATCH] Fix monaco.d.ts not being generated and causing my terrible spelling to be committed --- src/vs/editor/common/config/editorOptions.ts | 4 ++-- src/vs/monaco.d.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/vs/editor/common/config/editorOptions.ts b/src/vs/editor/common/config/editorOptions.ts index b1f318970ac..a9b6a08ab17 100644 --- a/src/vs/editor/common/config/editorOptions.ts +++ b/src/vs/editor/common/config/editorOptions.ts @@ -444,12 +444,12 @@ export interface IEditorOptions { iconsInSuggestions?: boolean; /** * Options for auto closing brackets. - * Defaults to allowing autoclosing before whitespace and punctuation and allowing autowrapping always. + * Defaults to allowing auto-closing before whitespace and punctuation and allowing auto-wrapping always. */ autoClosingBrackets?: EditorAutoClosingOptions; /** * Options for auto closing quotes. - * Defaults to allowing autoclosing before whitespace and allowing autowrapping always. + * Defaults to allowing auto-closing before whitespace and allowing auto-wrapping always. */ autoClosingQuotes?: EditorAutoClosingOptions; /** diff --git a/src/vs/monaco.d.ts b/src/vs/monaco.d.ts index 436ce8b8b90..fefe1b10614 100644 --- a/src/vs/monaco.d.ts +++ b/src/vs/monaco.d.ts @@ -2786,12 +2786,12 @@ declare namespace monaco.editor { iconsInSuggestions?: boolean; /** * Options for auto closing brackets. - * Defaults to allowing both autowrapping and autoclosing. + * Defaults to allowing auto-closing before whitespace and punctuation and allowing auto-wrapping always. */ autoClosingBrackets?: EditorAutoClosingOptions; /** * Options for auto closing quotes. - * Defaults to allowing autoclosing before whitespace and allwoing autowrapping always. + * Defaults to allowing auto-closing before whitespace and allowing auto-wrapping always. */ autoClosingQuotes?: EditorAutoClosingOptions; /** -- GitLab