Merge pull request #125591 from richardtallent/patch-1

Fix doc of renderWhitespace default value
This commit is contained in:
Alexandru Dima 2021-06-11 23:53:00 +02:00 committed by GitHub
commit e54a29d55c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -565,7 +565,7 @@ export interface IEditorOptions {
matchBrackets?: 'never' | 'near' | 'always';
/**
* Enable rendering of whitespace.
* Defaults to none.
* Defaults to 'selection'.
*/
renderWhitespace?: 'none' | 'boundary' | 'selection' | 'trailing' | 'all';
/**

2
src/vs/monaco.d.ts vendored
View file

@ -3156,7 +3156,7 @@ declare namespace monaco.editor {
matchBrackets?: 'never' | 'near' | 'always';
/**
* Enable rendering of whitespace.
* Defaults to none.
* Defaults to 'selection'.
*/
renderWhitespace?: 'none' | 'boundary' | 'selection' | 'trailing' | 'all';
/**