benchmark/runner.js: Add missing semicolon

Fixes the following JSHint error:

  ./benchmark/runner.js: line 21, col 42, Missing semicolon.
redux
David Majda 13 years ago
parent 17f62ae9e3
commit cad3013966

@ -18,7 +18,7 @@ Runner = {
* We can't use |arguments.callee| here because |this| would get * We can't use |arguments.callee| here because |this| would get
* messed-up in that case. * messed-up in that case.
*/ */
setTimeout(function() { Q.run() }, 0); setTimeout(function() { Q.run(); }, 0);
} }
} }
}; };

Loading…
Cancel
Save