mirror of https://github.com/tc39/test262.git
Fix grammar in JSON.stringify tests
This commit is contained in:
parent
d961fcc905
commit
58e308753c
|
@ -14,7 +14,7 @@ info: |
|
|||
This default applies to JSON.stringify, and it must exist as a function
|
||||
taking 3 parameters.
|
||||
es5id: 15.12.3-0-1
|
||||
description: JSON.stringify must exist as be a function
|
||||
description: JSON.stringify must exist as a function
|
||||
---*/
|
||||
|
||||
var f = JSON.stringify;
|
||||
|
|
|
@ -14,7 +14,7 @@ info: |
|
|||
This default applies to JSON.stringify, and it must exist as a function
|
||||
taking 3 parameters.
|
||||
es5id: 15.12.3-0-2
|
||||
description: JSON.stringify must exist as be a function taking 3 parameters
|
||||
description: JSON.stringify must exist as a function taking 3 parameters
|
||||
---*/
|
||||
|
||||
var f = JSON.stringify;
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
es5id: 15.12.3_4-1-1
|
||||
description: JSON.stringify a circular object throws a error
|
||||
description: JSON.stringify of a circular object throws a TypeError
|
||||
---*/
|
||||
|
||||
var obj = {};
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/*---
|
||||
es5id: 15.12.3_4-1-2
|
||||
description: JSON.stringify a indirectly circular object throws a error
|
||||
description: JSON.stringify of an indirectly circular object throws a TypeError
|
||||
---*/
|
||||
|
||||
var obj = {
|
||||
|
|
Loading…
Reference in New Issue