Skip to content

Commit

Permalink
Fix [[|slot|_cached]] syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
twiss committed Jan 7, 2025
1 parent 6a29f17 commit 1a2a431
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions spec/Overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -775,25 +775,25 @@ <h2>Terminology</h2>
</p>
<p>
When this specification refers to the <dfn id="concept-cached-object">cached ECMAScript
object</dfn> associated with an internal slot [[|slot|]] of |object|,
object</dfn> associated with an internal slot [[<var>slot</var>]] of |object|,
the user agent must run the following steps:
</p>
<ol>
<li>
<dl class="switch">
<dt>
If the [[|slot|_cached]] internal slot of |object| is undefined:
If the [[<var>slot</var>_cached]] internal slot of |object| is undefined:
</dt>
<dd>
Set the [[|slot|_cached]] internal slot of |object| to the result
Set the [[<var>slot</var>_cached]] internal slot of |object| to the result
of performing type conversion to an ECMAScript object as defined in
[[WebIDL]] to the contents of the [[|slot|]]
[[WebIDL]] to the contents of the [[<var>slot</var>]]
internal slot of |object|.
</dd>
</dl>
</li>
<li>
Return the contents of the [[|slot|_cached]] internal slot of |object|.
Return the contents of the [[<var>slot</var>_cached]] internal slot of |object|.
</li>
</ol>
</section>
Expand Down

0 comments on commit 1a2a431

Please sign in to comment.