diff --git a/test/built-ins/TypedArray/prototype/fill/coerced-end-detach.js b/test/built-ins/TypedArray/prototype/fill/coerced-end-detach.js index 862fbd491e..32af1d527b 100644 --- a/test/built-ins/TypedArray/prototype/fill/coerced-end-detach.js +++ b/test/built-ins/TypedArray/prototype/fill/coerced-end-detach.js @@ -2,8 +2,8 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-%typedarray%.prototype.fill -description: Security Throws a TypeError if end coercion detaches - the buffer +description: > + Security Throws a TypeError if end coercion detaches the buffer info: | 22.2.3.8 %TypedArray%.prototype.fill (value [ , start [ , end ] ] ) diff --git a/test/built-ins/TypedArray/prototype/fill/coerced-start-detach.js b/test/built-ins/TypedArray/prototype/fill/coerced-start-detach.js index 611fe3cec7..4d067672a7 100644 --- a/test/built-ins/TypedArray/prototype/fill/coerced-start-detach.js +++ b/test/built-ins/TypedArray/prototype/fill/coerced-start-detach.js @@ -2,8 +2,8 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-%typedarray%.prototype.fill -description: Security Throws a TypeError if start coercion detaches - the buffer +description: > + Security Throws a TypeError if start coercion detaches the buffer info: | 22.2.3.8 %TypedArray%.prototype.fill (value [ , start [ , end ] ] ) diff --git a/test/built-ins/TypedArray/prototype/fill/coerced-value-detach.js b/test/built-ins/TypedArray/prototype/fill/coerced-value-detach.js index fb5cf91076..ae2c2aed14 100644 --- a/test/built-ins/TypedArray/prototype/fill/coerced-value-detach.js +++ b/test/built-ins/TypedArray/prototype/fill/coerced-value-detach.js @@ -2,8 +2,8 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-%typedarray%.prototype.fill -description: Security Throws a TypeError if value coercion detaches - the buffer +description: > + Security Throws a TypeError if value coercion detaches the buffer info: | 22.2.3.8 %TypedArray%.prototype.fill (value [ , start [ , end ] ] ) diff --git a/test/built-ins/TypedArray/prototype/sort/detached-buffer-comparefn-coerce.js b/test/built-ins/TypedArray/prototype/sort/detached-buffer-comparefn-coerce.js index 37fffb5d50..6e2be4cafd 100644 --- a/test/built-ins/TypedArray/prototype/sort/detached-buffer-comparefn-coerce.js +++ b/test/built-ins/TypedArray/prototype/sort/detached-buffer-comparefn-coerce.js @@ -2,8 +2,9 @@ // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-%typedarray%.prototype.sort -description: SECURITY Throws a TypeError if coercion of the comparefn - return value detaches the object buffer +description: > + SECURITY Throws a TypeError if coercion of the comparefn return value + detaches the object buffer info: | 22.2.3.26 %TypedArray%.prototype.sort ( comparefn )