Fix jsdoc indentation

This commit is contained in:
Daniel Imms
2016-10-09 13:23:22 -07:00
parent 76a890aa74
commit 32e878db81
+5 -5
View File
@@ -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--) {