"Normalize" some YAML

In each case, it's the scalar value associated with the "description" key.
Normally in test262, this is written in either:
- block notation (indicated by '>' or '|'), or
- flow notation, single-line, on the same line as the key.

In the cases addressed by this PR, the value is instead written in:
- (1x) flow notation, *multi*-line, or
- (2x) flow notation, single-line, on the line *after* the key.

These are valid YAML, but they're styles that test262 doesn't otherwise use,
so could conceivably confuse people or harnesses.

This PR changes them to block notation.
This commit is contained in:
Michael Dyck 2021-07-21 16:22:34 -04:00 committed by Rick Waldron
parent ae0cf675bf
commit 82e0487797
3 changed files with 4 additions and 3 deletions

View File

@ -3,7 +3,8 @@
/*---
esid: sec-temporal.calendar.prototype.fields
description: Temporal.Calendar.prototype.fields will take iterable of any size and any string
description: >
Temporal.Calendar.prototype.fields will take iterable of any size and any string
and return Array of the same content.
info: |
## 12.4.21 Temporal.Calendar.prototype.fields ( fields )

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-initializedatetimeformat
description:
description: >
Invalid values for the `timeZoneName` option of the DateTimeFormat constructor
features: [Intl.DateTimeFormat-extend-timezonename]
---*/

View File

@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-initializedatetimeformat
description:
description: >
Valid values for the `timeZoneName` option of the DateTimeFormat constructor
features: [Intl.DateTimeFormat-extend-timezonename]
---*/