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
description: Behavior when "this" value is a boolean.
info: |
TrimString
Runtime Semantics: TrimString ( string, where )
2. Let S be ? ToString(str).
ToString
ToString ( argument )
Argument Type: Boolean
Result:
If argument is true, return "true".

View File

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

View File

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

View File

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

View File

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

View File

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