Fixing eslint JSDoc from merge

This commit is contained in:
Tim Mickel 2016-06-08 17:25:26 -04:00
parent 42d03db28b
commit b9bd037963

View file

@ -91,11 +91,11 @@ Blocks.prototype.getOpcode = function (id) {
*/ */
Blocks.prototype.generateBlockListener = function (isFlyout, opt_runtime) { Blocks.prototype.generateBlockListener = function (isFlyout, opt_runtime) {
var instance = this;
/** /**
* The actual generated block listener. * The actual generated block listener.
* @param {Object} Blockly "block" event * @param {Object} e Blockly "block" event
*/ */
var instance = this;
return function (e) { return function (e) {
// Validate event // Validate event
if (typeof e !== 'object') return; if (typeof e !== 'object') return;