Skip to content
Snippets Groups Projects
Commit 2b7df61d authored by Valerie R Young's avatar Valerie R Young Committed by Rick Waldron
Browse files

Fixup typos

parent 524f545f
No related branches found
No related tags found
No related merge requests found
......@@ -37,11 +37,11 @@ var thisVal = {
},
get toString() {
toStringAccessed += 1;
return function() {return ''; }
return function() { return ''; };
},
get valueOf() {
valueOfAccessed += 1;
return function() {return ''; }
return function() { return ''; };
},
};
......
......@@ -57,7 +57,7 @@ var thisVal = {
},
get valueOf() {
valueOfAccessed += 1;
return function() { return ' 42' };
return function() { return ' 42'; };
},
};
......@@ -84,7 +84,6 @@ assert.sameValue(
1,
'thisVal[Symbol.toPrimitive should have been accessed.'
);
assert.sameValue(
toStringAccessed,
1,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment