From f2ef231b6eb24d0b8b99c7793b4885f1b0b19e64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ann=20Kilzer=20=E3=82=AD=E3=83=AB=E3=82=B6=E3=83=BC?= =?UTF-8?q?=E6=9D=8F?= Date: Thu, 29 Sep 2022 12:08:59 +0900 Subject: [PATCH] Fix typo "stirng" to "string" --- 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..df86ffff 100644 --- a/1-js/05-data-types/03-string/article.md +++ b/1-js/05-data-types/03-string/article.md @@ -516,7 +516,7 @@ As we already mentioned, JavaScript strings are based on [Unicode](https://en.wi Each character is represented by a byte sequence of 1-4 bytes. -JavaScript allows us to specify a character not only by directly including it into a stirng, but also by its hexadecimal Unicode code using these three notations: +JavaScript allows us to specify a character not only by directly including it into a string, but also by its hexadecimal Unicode code using these three notations: - `\xXX` -- a character whose Unicode code point is `U+00XX`.