Skip to content
Snippets Groups Projects
Commit b3efcd2f authored by Peter Marshall's avatar Peter Marshall Committed by Leo Balter
Browse files

Consistently use spaces in features lists (#2000)

parent bf6b753d
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ info: >
The function object that is the initial value of String.prototype.trimLeft is the same function object that is the initial value of String.prototype.trimStart.
includes: [propertyHelper.js]
features: [string-trimming,String.prototype.trimStart]
features: [string-trimming, String.prototype.trimStart]
---*/
verifyProperty(String.prototype.trimLeft, "name", {
......
......@@ -10,7 +10,7 @@ info: >
The function object that is the initial value of String.prototype.trimRight is the same function object that is the initial value of String.prototype.trimEnd.
includes: [propertyHelper.js]
features: [string-trimming,String.prototype.trimEnd]
features: [string-trimming, String.prototype.trimEnd]
---*/
verifyProperty(String.prototype.trimRight, "name", {
......
......@@ -8,7 +8,7 @@ esid: sec-get-arraybuffer-@@species
es6id: 24.1.3.3
author: Sam Mikes
description: ArrayBuffer[Symbol.species] exists per spec
features: [ ArrayBuffer, Symbol.species ]
features: [ArrayBuffer, Symbol.species]
includes: [propertyHelper.js]
---*/
......
......@@ -4,7 +4,7 @@
esid: sec-object.is
description: >
Object.is/SameValue: Symbol
features: [Object.is,Symbol]
features: [Object.is, Symbol]
---*/
var symA = Symbol('66');
var symB = Symbol('66');
......
......@@ -18,7 +18,7 @@ info: |
If iterationKind is enumerate, then
Return status.
features: [destructuring-assignment,for-of,Symbol.iterator]
features: [destructuring-assignment, for-of, Symbol.iterator]
---*/
var callCount = 0;
......
......@@ -11,7 +11,7 @@ info: |
Let status be the result of performing DestructuringAssignmentEvaluation of
assignmentPattern using nextValue as the argument.
features: [destructuring-assignment,for-of]
features: [destructuring-assignment, for-of]
---*/
var iterationCount = 0;
......
......@@ -17,7 +17,7 @@ info: |
Let status be PutValue(lhsRef, nextValue).
...
features: [for-of,Symbol.iterator]
features: [for-of, Symbol.iterator]
---*/
var callCount = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment