erroneous semicolon

This commit is contained in:
rolux 2012-04-08 14:19:34 +02:00
parent 370997c324
commit 7daf1a23a0

View file

@ -256,7 +256,7 @@ Ox.loop = function() {
for (i = start; step > 0 ? i < stop : i > stop; i += step) {
if (callback(i) === false) {
break;
};
}
}
return i;
};