Skip to content

Commit

Permalink
fix stupid mistype
Browse files Browse the repository at this point in the history
  • Loading branch information
A committed Apr 12, 2015
1 parent 900b2e7 commit 4fe05fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/bench.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ function bench() {
var endedAt = startedAt + 1000;
var i = 0;
var tf;
if (program.cycles) { tf = textr().use.apply(null, tfs); }
if (!program.cycles) { tf = textr().use.apply(null, tfs); }
do {
if (!program.cycles) { tf = textr().use.apply(null, tfs); }
if (program.cycles) { tf = textr().use.apply(null, tfs); }
res = tf(buf);
i++;
} while (+new Date() < endedAt);
Expand Down

0 comments on commit 4fe05fa

Please sign in to comment.