Skip to content

Commit

Permalink
Fix faulty debugging context capturing for bichain
Browse files Browse the repository at this point in the history
  • Loading branch information
Avaq committed May 11, 2020
1 parent 83b0894 commit 15a5e2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bichain.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function bichain(f){
return function bichain(g){
var context2 = application(2, bichain, func, arguments, context1);
return function bichain(m){
var context3 = application(3, bichain, future, arguments, context1, context2);
var context3 = application(3, bichain, future, arguments, context2);
return m._transform(new BichainTransformation(context3, f, g));
};
};
Expand Down

0 comments on commit 15a5e2a

Please sign in to comment.