From ef899c48fde338d2b2531874717797233495e4e7 Mon Sep 17 00:00:00 2001 From: Mike Pennisi <mike@mikepennisi.com> Date: Thu, 2 Apr 2015 17:56:19 -0400 Subject: [PATCH] fixup! Correct typos --- test/language/templates/expressions/function-invocation.js | 2 +- test/language/templates/expressions/method-invocation.js | 2 +- test/language/templates/expressions/object-deference.js | 2 +- test/language/templates/expressions/object.js | 2 +- test/language/templates/expressions/primitives.js | 2 +- test/language/templates/expressions/template-literal.js | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/language/templates/expressions/function-invocation.js b/test/language/templates/expressions/function-invocation.js index 06235f8244..38094e74c6 100644 --- a/test/language/templates/expressions/function-invocation.js +++ b/test/language/templates/expressions/function-invocation.js @@ -3,7 +3,7 @@ /*--- es6id: 12.2.8 description: > - Expressions should be evaluated and converted to Stings accordingto the + Expressions should be evaluated and converted to Strings according to the ToString abstract operation. ---*/ function fn() { return 'result'; } diff --git a/test/language/templates/expressions/method-invocation.js b/test/language/templates/expressions/method-invocation.js index 98fe65266b..6f9a9ed077 100644 --- a/test/language/templates/expressions/method-invocation.js +++ b/test/language/templates/expressions/method-invocation.js @@ -3,7 +3,7 @@ /*--- es6id: 12.2.8 description: > - Expressions should be evaluated and converted to Stings accordingto the + Expressions should be evaluated and converted to Strings according to the ToString abstract operation. ---*/ var object = { diff --git a/test/language/templates/expressions/object-deference.js b/test/language/templates/expressions/object-deference.js index 40e696df3c..8ba043de3a 100644 --- a/test/language/templates/expressions/object-deference.js +++ b/test/language/templates/expressions/object-deference.js @@ -3,7 +3,7 @@ /*--- es6id: 12.2.8 description: > - Expressions should be evaluated and converted to Stings accordingto the + Expressions should be evaluated and converted to Strings according to the ToString abstract operation. ---*/ var object = { diff --git a/test/language/templates/expressions/object.js b/test/language/templates/expressions/object.js index 605f4a0cc3..59a40268b7 100644 --- a/test/language/templates/expressions/object.js +++ b/test/language/templates/expressions/object.js @@ -3,7 +3,7 @@ /*--- es6id: 12.2.8 description: > - Expressions should be evaluated and converted to Stings according to the + Expressions should be evaluated and converted to Strings according to the ToString abstract operation. ---*/ var plain = {}; diff --git a/test/language/templates/expressions/primitives.js b/test/language/templates/expressions/primitives.js index b5e1b67392..44a1396e17 100644 --- a/test/language/templates/expressions/primitives.js +++ b/test/language/templates/expressions/primitives.js @@ -3,7 +3,7 @@ /*--- es6id: 12.2.8 description: > - Expressions should be evaluated and converted to Stings accordingto the + Expressions should be evaluated and converted to Strings according to the ToString abstract operation. ---*/ diff --git a/test/language/templates/expressions/template-literal.js b/test/language/templates/expressions/template-literal.js index 6e4aca2ec6..a3b06e45c1 100644 --- a/test/language/templates/expressions/template-literal.js +++ b/test/language/templates/expressions/template-literal.js @@ -3,7 +3,7 @@ /*--- es6id: 12.2.8 description: > - Expressions should be evaluated and converted to Stings accordingto the + Expressions should be evaluated and converted to Strings according to the ToString abstract operation. ---*/ assert.sameValue(`foo ${`bar ${5} baz`} qux`, 'foo bar 5 baz qux');