Browse Source

typos

contingency-plan
Rich-Harris 9 years ago
parent
commit
dd3bf0c3b0
  1. 2
      test/function/deconflicts-globals/bar.js
  2. 2
      test/function/deconflicts-globals/foo.js

2
test/function/deconflicts-globals/bar.js

@ -3,4 +3,4 @@ import foo from './foo';
export default function() { export default function() {
assert.equal( foo(), 'foo' ); assert.equal( foo(), 'foo' );
return Number; return Number;
}; }

2
test/function/deconflicts-globals/foo.js

@ -2,4 +2,4 @@ export var Number = 42;
export default function() { export default function() {
return 'foo'; return 'foo';
}; }

Loading…
Cancel
Save