From 136e2f2afebace27f56435dae368577dce9a20f9 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Fri, 11 Aug 2023 13:07:04 -0700 Subject: [PATCH] Improve API wording --- typings/xterm.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typings/xterm.d.ts b/typings/xterm.d.ts index 23aab9b5..345c100b 100644 --- a/typings/xterm.d.ts +++ b/typings/xterm.d.ts @@ -60,7 +60,7 @@ declare module 'xterm' { cursorBlink?: boolean; /** - * The style of the cursor. + * The style of the cursor when the terminal is focused. */ cursorStyle?: 'block' | 'underline' | 'bar'; @@ -70,7 +70,7 @@ declare module 'xterm' { cursorWidth?: number; /** - * The style of the inactive cursor. + * The style of the cursor when the terminal is not focused. */ cursorInactiveStyle?: 'outline' | 'block' | 'bar' | 'underline' | 'none';