From f6f90284f3fe7b209a6dd708851579b97e1938b2 Mon Sep 17 00:00:00 2001 From: Tony Brix Date: Wed, 26 Jun 2019 09:03:59 -0500 Subject: [PATCH] Update getInvisibles documentation fixes #16042 --- src/text-editor.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/text-editor.js b/src/text-editor.js index 46e692807..6f108d74a 100644 --- a/src/text-editor.js +++ b/src/text-editor.js @@ -4084,7 +4084,9 @@ module.exports = class TextEditor { } // Returns an {Object} representing the current invisible character - // substitutions for this editor. See {::setInvisibles}. + // substitutions for this editor, whose keys are names of invisible characters + // and whose values are 1-character {Strings}s that are displayed in place of + // those invisible characters getInvisibles() { if (!this.mini && this.showInvisibles && this.invisibles != null) { return this.invisibles;