From 467a93c8d9080d66c2329a2616fcfa6197f69388 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Sat, 1 Sep 2018 09:34:01 -0700 Subject: [PATCH] Fix typo/grammar/line width --- typings/xterm.d.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/typings/xterm.d.ts b/typings/xterm.d.ts index d40c045f..e773bf47 100644 --- a/typings/xterm.d.ts +++ b/typings/xterm.d.ts @@ -40,11 +40,12 @@ declare module 'xterm' { bellStyle?: 'none' /*| 'visual'*/ | 'sound' /*| 'both'*/; /** - * When enabled the cursor will be set to the beginning of the next line with - * every new line. This equivalent to sending '\r\n' for each '\n'. - * Normally the termios settings of the underlying PTY deals with - * the translation of '\n' to '\r\n' and this setting should not be used. - * If you deal with data from a not PTY related source this settings might be useful. + * When enabled the cursor will be set to the beginning of the next line + * with every new line. This equivalent to sending '\r\n' for each '\n'. + * Normally the termios settings of the underlying PTY deals with the + * translation of '\n' to '\r\n' and this setting should not be used. If you + * deal with data from a non-PTY related source, this settings might be + * useful. */ convertEol?: boolean;