@@ -856,8 +856,8 @@ declare module '@xterm/xterm' {
856856 readonly buffer : IBufferNamespace ;
857857
858858 /**
859- * (EXPERIMENTAL) Get all markers registered against the buffer. If the alt
860- * buffer is active this will always return [].
859+ * Get all markers registered against the buffer. If the alt buffer is
860+ * active this will always return [].
861861 */
862862 readonly markers : ReadonlyArray < IMarker > ;
863863
@@ -867,8 +867,8 @@ declare module '@xterm/xterm' {
867867 readonly parser : IParser ;
868868
869869 /**
870- * (EXPERIMENTAL) Get the Unicode handling interface
871- * to register and switch Unicode version.
870+ * (EXPERIMENTAL) Get the Unicode handling interface to register and switch
871+ * Unicode version.
872872 */
873873 readonly unicode : IUnicodeHandling ;
874874
@@ -1129,9 +1129,9 @@ declare module '@xterm/xterm' {
11291129 registerLinkProvider ( linkProvider : ILinkProvider ) : IDisposable ;
11301130
11311131 /**
1132- * (EXPERIMENTAL) Registers a character joiner, allowing custom sequences of
1133- * characters to be rendered as a single unit. This is useful in particular
1134- * for rendering ligatures and graphemes, among other things.
1132+ * Registers a character joiner, allowing custom sequences of characters to
1133+ * be rendered as a single unit. This is useful in particular for rendering
1134+ * ligatures and graphemes, among other things.
11351135 *
11361136 * Each registered character joiner is called with a string of text
11371137 * representing a portion of a line in the terminal that can be rendered as
@@ -1160,8 +1160,8 @@ declare module '@xterm/xterm' {
11601160 registerCharacterJoiner ( handler : ( text : string ) => [ number , number ] [ ] ) : number ;
11611161
11621162 /**
1163- * (EXPERIMENTAL) Deregisters the character joiner if one was registered.
1164- * NOTE: character joiners are only used by the webgl renderer.
1163+ * Deregisters the character joiner if one was registered. Note that
1164+ * character joiners are only used by the webgl renderer.
11651165 * @param joinerId The character joiner's ID (returned after register)
11661166 */
11671167 deregisterCharacterJoiner ( joinerId : number ) : void ;
@@ -1174,7 +1174,7 @@ declare module '@xterm/xterm' {
11741174 registerMarker ( cursorYOffset ?: number ) : IMarker ;
11751175
11761176 /**
1177- * (EXPERIMENTAL) Adds a decoration to the terminal using
1177+ * Registers a decoration to the terminal.
11781178 * @param decorationOptions, which takes a marker and an optional anchor,
11791179 * width, height, and x offset from the anchor. Returns the decoration or
11801180 * undefined if the alt buffer is active or the marker has already been
0 commit comments