Skip to content

Commit

Permalink
Editorial: String.prototype.normalize now references the Unicode Stan…
Browse files Browse the repository at this point in the history
…dard instead of Annex 15 (tc39#3051)
  • Loading branch information
dewren99 authored and ljharb committed May 11, 2023
1 parent 928a953 commit f682cff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -34157,7 +34157,7 @@ <h1>String.prototype.normalize ( [ _form_ ] )</h1>
1. If _form_ is *undefined*, let _f_ be *"NFC"*.
1. Else, let _f_ be ? ToString(_form_).
1. If _f_ is not one of *"NFC"*, *"NFD"*, *"NFKC"*, or *"NFKD"*, throw a *RangeError* exception.
1. Let _ns_ be the String value that is the result of normalizing _S_ into the normalization form named by _f_ as specified in <a href="https://unicode.org/reports/tr15/">https://unicode.org/reports/tr15/</a>.
1. Let _ns_ be the String value that is the result of normalizing _S_ into the normalization form named by _f_ as specified in <a href="https://www.unicode.org/versions/latest/ch03.pdf">the latest Unicode Standard, Normalization Forms</a>.
1. Return _ns_.
</emu-alg>
<emu-note>
Expand Down

0 comments on commit f682cff

Please sign in to comment.