Fixup edit to info

This commit is contained in:
Valerie R Young 2017-10-06 17:17:56 -04:00 committed by Rick Waldron
parent 56d57956a0
commit 05d1ddf670
6 changed files with 12 additions and 12 deletions

View File

@ -5,10 +5,10 @@
esid: sec-string.prototype.trimEnd esid: sec-string.prototype.trimEnd
description: Behavior when "this" value is a boolean. description: Behavior when "this" value is a boolean.
info: | info: |
TrimString Runtime Semantics: TrimString ( string, where )
2. Let S be ? ToString(str). 2. Let S be ? ToString(str).
ToString ToString ( argument )
Argument Type: Boolean Argument Type: Boolean
Result: Result:
If argument is true, return "true". If argument is true, return "true".

View File

@ -5,10 +5,10 @@
esid: sec-string.prototype.trimEnd esid: sec-string.prototype.trimEnd
description: Behavoir when "this" value is a number. description: Behavoir when "this" value is a number.
info: | info: |
TrimString Runtime Semantics: TrimString ( string, where )
2. Let S be ? ToString(str). 2. Let S be ? ToString(str).
ToString ToString ( argument )
Argument Type: Number Argument Type: Number
Result: NumberToString(argument) Result: NumberToString(argument)
features: [string-trimming] features: [string-trimming]

View File

@ -5,10 +5,10 @@
esid: sec-string.prototype.trimEnd esid: sec-string.prototype.trimEnd
description: Type error when "this" value is a Symbol description: Type error when "this" value is a Symbol
info: | info: |
TrimString Runtime Semantics: TrimString ( string, where )
2. Let S be ? ToString(str). 2. Let S be ? ToString(str).
ToString ToString ( argument )
Argument Type: Symbol Argument Type: Symbol
Result: Throw a TypeError exception Result: Throw a TypeError exception
features: [string-trimming] features: [string-trimming]

View File

@ -5,10 +5,10 @@
esid: sec-string.prototype.trimStart esid: sec-string.prototype.trimStart
description: Behavior when "this" value is a boolean. description: Behavior when "this" value is a boolean.
info: | info: |
TrimString Runtime Semantics: TrimString ( string, where )
2. Let S be ? ToString(str). 2. Let S be ? ToString(str).
ToString ToString ( argument )
Argument Type: Boolean Argument Type: Boolean
Result: Result:
If argument is true, return "true". If argument is true, return "true".

View File

@ -5,10 +5,10 @@
esid: sec-string.prototype.trimStart esid: sec-string.prototype.trimStart
description: Behavoir when "this" value is a number. description: Behavoir when "this" value is a number.
info: | info: |
TrimString Runtime Semantics: TrimString ( string, where )
2. Let S be ? ToString(str). 2. Let S be ? ToString(str).
ToString ToString ( argument )
Argument Type: Number Argument Type: Number
Result: NumberToString(argument) Result: NumberToString(argument)
features: [string-trimming] features: [string-trimming]

View File

@ -5,10 +5,10 @@
esid: sec-string.prototype.trimStart esid: sec-string.prototype.trimStart
description: Type error when "this" value is a Symbol description: Type error when "this" value is a Symbol
info: | info: |
TrimString Runtime Semantics: TrimString ( string, where )
2. Let S be ? ToString(str). 2. Let S be ? ToString(str).
ToString ToString ( argument )
Argument Type: Symbol Argument Type: Symbol
Result: Throw a TypeError exception Result: Throw a TypeError exception
features: [string-trimming] features: [string-trimming]