fixing typos

This commit is contained in:
Danny Yoo 2011-03-29 17:12:47 -04:00
parent 69f2cf0d3a
commit df958aa6ec

View File

@ -123,7 +123,7 @@ var Primitives = (function() {
MACHINE.env[MACHINE.env.length - 1 - i],
i,
'+');
result += MACHINE.env[MACHINE.env.length - 1 - i],
result += MACHINE.env[MACHINE.env.length - 1 - i];
};
return result;
},
@ -138,7 +138,7 @@ var Primitives = (function() {
MACHINE.env[MACHINE.env.length - 1 - i],
i,
'*');
result *= MACHINE.env[MACHINE.env.length - 1 - i],
result *= MACHINE.env[MACHINE.env.length - 1 - i];
}
return result;
},