Skip to content

Commit 0d65708

Browse files
committed
Editorial: Use list to describe Intl object
Use `ul` list to describe the Intl object. This matches the style used in ECMA-262. Also add dfn for "Intl object" to allow linking.
1 parent b475554 commit 0d65708

1 file changed

Lines changed: 11 additions & 6 deletions

File tree

spec/intl.html

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
<emu-clause id="intl-object">
22
<h1>The Intl Object</h1>
3-
<p>The Intl object is the <dfn>%Intl%</dfn> intrinsic object and the initial value of the *"Intl"* property of the global object. The Intl object is a single ordinary object.</p>
43

5-
<p>The value of the [[Prototype]] internal slot of the Intl object is the intrinsic object %Object.prototype%.</p>
6-
7-
<p>The Intl object is not a function object. It does not have a [[Construct]] internal method; it is not possible to use the Intl object as a constructor with the `new` operator. The Intl object does not have a [[Call]] internal method; it is not possible to invoke the Intl object as a function.</p>
8-
9-
<p>The Intl object has an internal slot, [[FallbackSymbol]], which is a new %Symbol% in the current realm with the [[Description]] *"IntlLegacyConstructedSymbol"*.</p>
4+
<p>The <dfn>Intl object</dfn>:</p>
5+
<ul>
6+
<li>is <dfn>%Intl%</dfn>.</li>
7+
<li>is the initial value of the *"Intl"* property of the global object.</li>
8+
<li>is an ordinary object.</li>
9+
<li>has a [[Prototype]] internal slot whose value is %Object.prototype%.</li>
10+
<li>is not a function object.</li>
11+
<li>does not have a [[Construct]] internal method; it cannot be used as a constructor with the `new` operator.</li>
12+
<li>does not have a [[Call]] internal method; it cannot be invoked as a function.</li>
13+
<li>has a [[FallbackSymbol]] internal slot, which is a new %Symbol% in the current realm with the [[Description]] *"IntlLegacyConstructedSymbol"*.</li>
14+
</ul>
1015

1116
<emu-clause id="sec-value-properties-of-the-intl-object">
1217
<h1>Value Properties of the Intl Object</h1>

0 commit comments

Comments
 (0)