Fix typo in comments (Standart -> Standard)

This commit is contained in:
Zirak 2018-01-26 13:55:16 -06:00 committed by Rick Waldron
parent 6fa2525107
commit 1bcb4fc2ef
7 changed files with 7 additions and 7 deletions

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: Check examples for automatic semicolon insertion from the Standart
info: Check examples for automatic semicolon insertion from the standard
es5id: 7.9.2_A1_T1
description: "{ 1 2 } 3 is not a valid sentence in the ECMAScript grammar"
negative:

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: Check examples for automatic semicolon insertion from the Standart
info: Check examples for automatic semicolon insertion from the standard
es5id: 7.9.2_A1_T2
description: >
{ 1 \n 2 } 3 is a valid sentence in the ECMAScript grammar with

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: Check examples for automatic semicolon insertion from the Standart
info: Check examples for automatic semicolon insertion from the standard
es5id: 7.9.2_A1_T3
description: for( a ; b \n ) is not a valid sentence in the ECMAScript grammar
negative:

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: Check examples for automatic semicolon insertion from the Standart
info: Check examples for automatic semicolon insertion from the standard
es5id: 7.9.2_A1_T4
description: >
return \n a+b is a valid sentence in the ECMAScript grammar with

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: Check examples for automatic semicolon insertion from the Standart
info: Check examples for automatic semicolon insertion from the standard
es5id: 7.9.2_A1_T5
description: >
a=b \n ++c is a valid sentence in the ECMAScript grammar with

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: Check examples for automatic semicolon insertion from the Standart
info: Check examples for automatic semicolon insertion from the standard
es5id: 7.9.2_A1_T6
description: >
if(a>b) \n else c=d is not a valid sentence in the ECMAScript

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: Check examples for automatic semicolon insertion from the Standart
info: Check examples for automatic semicolon insertion from the standard
es5id: 7.9.2_A1_T7
description: >
a=b+c \n (d+e).print() is a valid sentence in the ECMAScript