From 0c97a2dbf0e8dcda6cbed2542b25755b52c44087 Mon Sep 17 00:00:00 2001 From: Mathias Bynens Date: Tue, 30 Aug 2016 12:47:30 +0200 Subject: [PATCH] Normative: Point to the latest version of UTR15 Instead of referring to a version snapshot, link to the latest version of UTR15. Ref. #620. --- spec.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec.html b/spec.html index 19852a9e33..edf93c3ac9 100644 --- a/spec.html +++ b/spec.html @@ -26716,7 +26716,7 @@

String.prototype.normalize ( [ _form_ ] )

1. If _form_ is not provided or _form_ is *undefined*, let _form_ be `"NFC"`. 1. 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 http://www.unicode.org/reports/tr15/tr15-29.html. + 1. Let _ns_ be the String value that is the result of normalizing _S_ into the normalization form named by _f_ as specified in http://www.unicode.org/reports/tr15/. 1. Return _ns_.