Skip to content

Commit

Permalink
Editorial: Introduce an alias
Browse files Browse the repository at this point in the history
In anticipation of a fix for tc39#1426
(cf. tc39#2739 (comment) )
  • Loading branch information
gibson042 committed Apr 26, 2022
1 parent a139ec0 commit 2fa7230
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -33996,7 +33996,8 @@ <h1>
1. Let _digits_ be the substring of _templateRemainder_ from 1 to 1 + _digitCount_.
1. Let _index_ be ℝ(StringToNumber(_digits_)).
1. Assert: 0 &le; _index_ &le; 99.
1. If 0 &lt; _index_ &le; the number of elements in _captures_, then
1. Let _captureLen_ be the number of elements in _captures_.
1. If 0 &lt; _index_ &le; _captureLen_, then
1. Let _capture_ be _captures_[_index_ - 1].
1. If _capture_ is *undefined*, then
1. Let _refReplacement_ be the empty String.
Expand Down

0 comments on commit 2fa7230

Please sign in to comment.