From a171b0a24f23a82b9da8385d98eb7bee9c007953 Mon Sep 17 00:00:00 2001 From: Z Yin Date: Sun, 13 Jun 2021 18:51:33 -0400 Subject: [PATCH] fix typo in 1-js/05-data-types/03-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 d5bda969..3b07ecca 100644 --- a/1-js/05-data-types/03-string/article.md +++ b/1-js/05-data-types/03-string/article.md @@ -526,7 +526,7 @@ Now it becomes obvious why `a > Z`. The characters are compared by their numeric code. The greater code means that the character is greater. The code for `a` (97) is greater than the code for `Z` (90). - All lowercase letters go after uppercase letters because their codes are greater. -- Some letters like `Ö` stand apart from the main alphabet. Here, it's code is greater than anything from `a` to `z`. +- Some letters like `Ö` stand apart from the main alphabet. Here, its code is greater than anything from `a` to `z`. ### Correct comparisons [#correct-comparisons]