From 2aa7e5539a16ffa5070d1148beb1565f2f5ec5a0 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sat, 5 Sep 2020 18:12:12 +0300 Subject: [PATCH] minor fixes --- 1-js/02-first-steps/05-types/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/05-types/article.md b/1-js/02-first-steps/05-types/article.md index ff728d0d..19e29701 100644 --- a/1-js/02-first-steps/05-types/article.md +++ b/1-js/02-first-steps/05-types/article.md @@ -127,7 +127,7 @@ We'll cover strings more thoroughly in the chapter . ```smart header="There is no *character* type." In some languages, there is a special "character" type for a single character. For example, in the C language and in Java it is called "char". -In JavaScript, there is no such type. There's only one type: `string`. A string may consist of only one character or many of them. +In JavaScript, there is no such type. There's only one type: `string`. A string may consist of zero characters (be empty), one character or many of them. ``` ## Boolean (logical type)