Append missing pipe character on "info:" lines (#3030)

This commit is contained in:
jmdyck 2021-06-25 14:50:40 -04:00 committed by GitHub
parent fb0a68a2cf
commit 781f10c9de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 8 additions and 8 deletions

View File

@ -5,7 +5,7 @@ esid: sec-arraybuffer-constructor
description: |
Invoked with an options object whose `maxByteLength` property is less than
the length.
info:
info: |
ArrayBuffer( length [ , options ] )
1. If NewTarget is undefined, throw a TypeError exception.

View File

@ -5,7 +5,7 @@ esid: sec-arraybuffer-constructor
description: |
Invoked with an options object whose `maxByteLength` property exceeds the
maximum length value
info:
info: |
ArrayBuffer( length [ , options ] )
1. If NewTarget is undefined, throw a TypeError exception.

View File

@ -3,7 +3,7 @@
/*---
esid: sec-arraybuffer-constructor
description: Invoked with an options object whose `maxByteLength` property is negative
info:
info: |
ArrayBuffer( length [ , options ] )
1. If NewTarget is undefined, throw a TypeError exception.

View File

@ -5,7 +5,7 @@ esid: sec-arraybuffer-constructor
description: |
Invoked with an options object whose `maxByteLength` property cannot be
coerced to a primitive value
info:
info: |
ArrayBuffer( length [ , options ] )
1. If NewTarget is undefined, throw a TypeError exception.

View File

@ -5,7 +5,7 @@ esid: sec-sharedarraybuffer-constructor
description: |
Invoked with an options object whose `maxByteLength` property is less than
the length.
info:
info: |
SharedArrayBuffer( length [ , options ] )
1. If NewTarget is undefined, throw a TypeError exception.

View File

@ -5,7 +5,7 @@ esid: sec-sharedarraybuffer-constructor
description: |
Invoked with an options object whose `maxByteLength` property exceeds the
maximum length value
info:
info: |
SharedArrayBuffer( length [ , options ] )
1. If NewTarget is undefined, throw a TypeError exception.

View File

@ -3,7 +3,7 @@
/*---
esid: sec-sharedarraybuffer-constructor
description: Invoked with an options object whose `maxByteLength` property is negative
info:
info: |
SharedArrayBuffer( length [ , options ] )
1. If NewTarget is undefined, throw a TypeError exception.

View File

@ -5,7 +5,7 @@ esid: sec-sharedarraybuffer-constructor
description: |
Invoked with an options object whose `maxByteLength` property cannot be
coerced to a primitive value
info:
info: |
SharedArrayBuffer( length [ , options ] )
1. If NewTarget is undefined, throw a TypeError exception.