From 32e878db816acf43e2597b55e95f4bd0bf1564e7 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Sun, 9 Oct 2016 13:23:22 -0700 Subject: [PATCH] Fix jsdoc indentation --- src/xterm.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/xterm.js b/src/xterm.js index 83592bb7..619d52b2 100644 --- a/src/xterm.js +++ b/src/xterm.js @@ -3099,9 +3099,9 @@ Terminal.prototype.is = function(term) { /** - * Emit the 'data' event and populate the given data. - * @param {string} data The data to populate in the event. - */ + * Emit the 'data' event and populate the given data. + * @param {string} data The data to populate in the event. + */ Terminal.prototype.handler = function(data) { this.emit('data', data); }; @@ -4344,8 +4344,8 @@ Terminal.prototype.scrollUp = function(params) { /** - * CSI Ps T Scroll down Ps lines (default = 1) (SD). - */ + * CSI Ps T Scroll down Ps lines (default = 1) (SD). + */ Terminal.prototype.scrollDown = function(params) { var param = params[0] || 1; while (param--) {