Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix typo in LeaveStackUnwinderException that prevented return from wo…
…rking, fixes closure test
  • Loading branch information
sorear committed Nov 6, 2011
1 parent efc1cca commit 8a51963
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -4,7 +4,7 @@ function makeLeaveStackUnwinderException ()
function LeaveStackUnwinderException.new(TargetBlock, PayLoad)
local this = {};
this.TargetBlock = TargetBlock;
this.HandleBlock = PayLoad;
this.PayLoad = PayLoad;
this.class = "LeaveStackUnwinderException";
return setmetatable(this, mt);
end
Expand Down

0 comments on commit 8a51963

Please sign in to comment.