From cad30139660d9f3bdb536f09948d3dce7dcffc55 Mon Sep 17 00:00:00 2001 From: David Majda Date: Wed, 14 Sep 2011 13:01:50 +0200 Subject: [PATCH] benchmark/runner.js: Add missing semicolon Fixes the following JSHint error: ./benchmark/runner.js: line 21, col 42, Missing semicolon. --- benchmark/runner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/runner.js b/benchmark/runner.js index efc6a98..d249afa 100644 --- a/benchmark/runner.js +++ b/benchmark/runner.js @@ -18,7 +18,7 @@ Runner = { * We can't use |arguments.callee| here because |this| would get * messed-up in that case. */ - setTimeout(function() { Q.run() }, 0); + setTimeout(function() { Q.run(); }, 0); } } };