Correct small whitespace inconsistency, lost while renaming variables.
2 compare = (function() {
3 function inner() { return inner.caller; };
5 globalClosure = inner();
6 return function(f) { return f === inner; }
9 assertEq(compare(globalInner), true);
11 assertEq(compare(globalInner), false);