Skip to content

Commit

Permalink
Fix the ap benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
Avaq committed Oct 9, 2016
1 parent 0134b59 commit 289612b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bench/ap.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const taskF = new DataTask((rej, res) => res(x => x + 1));
const futureF = RamdaFuture((rej, res) => res(x => x + 1));

suite.add('Fluture', () => {
flutureF.ap(fluture).fork(noop, noop);
fluture.ap(flutureF).fork(noop, noop);
});

suite.add('data.task', () => {
Expand Down

0 comments on commit 289612b

Please sign in to comment.