Fix typo/grammar/line width

This commit is contained in:
Daniel Imms
2018-09-01 09:34:01 -07:00
committed by GitHub
parent dc332480cc
commit 467a93c8d9
+6 -5
View File
@@ -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;