Skip to content

Commit

Permalink
Add missing comma in foldObj
Browse files Browse the repository at this point in the history
  • Loading branch information
norm2782 committed Jan 21, 2012
1 parent 78245f2 commit 11b4851
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EHC/src/jscript/rts/prim.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ primToPlainObj = function ( obj ) {
return foldObj(toPlainAlg, {}, obj, true);
};

foldObj = function (alg, target, original deep) {
foldObj = function (alg, target, original, deep) {
var name, src, copy, copyIsArray, clone;

// Extend the base object
Expand Down

0 comments on commit 11b4851

Please sign in to comment.