From 594bc55841e1e577ca29877c260d578a9caf60af Mon Sep 17 00:00:00 2001 From: joaquinelio Date: Thu, 29 Sep 2022 13:49:40 -0300 Subject: [PATCH] https link --- 1-js/05-data-types/03-string/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/03-string/article.md b/1-js/05-data-types/03-string/article.md index d55d23b9..abb315fa 100644 --- a/1-js/05-data-types/03-string/article.md +++ b/1-js/05-data-types/03-string/article.md @@ -670,7 +670,7 @@ alert( "S\u0307\u0323".normalize() == "\u1e68" ); // true In reality, this is not always the case. The reason being that the symbol `แนจ` is "common enough", so Unicode creators included it in the main table and gave it the code. -If you want to learn more about normalization rules and variants -- they are described in the appendix of the Unicode standard: [Unicode Normalization Forms](http://www.unicode.org/reports/tr15/), but for most practical purposes the information from this section is enough. +If you want to learn more about normalization rules and variants -- they are described in the appendix of the Unicode standard: [Unicode Normalization Forms](https://www.unicode.org/reports/tr15/), but for most practical purposes the information from this section is enough. ## Summary