Skip to content

Commit

Permalink
Editorial: use _Pk_ for unity of content and form (tc39#3249)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangenming authored and ljharb committed Jan 25, 2024
1 parent a88ef72 commit 3290694
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -38773,10 +38773,10 @@ <h1>Array.prototype.concat ( ..._items_ )</h1>
1. If _n_ + _len_ > 2<sup>53</sup> - 1, throw a *TypeError* exception.
1. Let _k_ be 0.
1. Repeat, while _k_ &lt; _len_,
1. Let _P_ be ! ToString(𝔽(_k_)).
1. Let _exists_ be ? HasProperty(_E_, _P_).
1. Let _Pk_ be ! ToString(𝔽(_k_)).
1. Let _exists_ be ? HasProperty(_E_, _Pk_).
1. If _exists_ is *true*, then
1. Let _subElement_ be ? Get(_E_, _P_).
1. Let _subElement_ be ? Get(_E_, _Pk_).
1. Perform ? CreateDataPropertyOrThrow(_A_, ! ToString(𝔽(_n_)), _subElement_).
1. Set _n_ to _n_ + 1.
1. Set _k_ to _k_ + 1.
Expand Down

0 comments on commit 3290694

Please sign in to comment.