From 98d590ba4a57efdc59b76aebee5366f76278b24d Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Mon, 13 Dec 2021 18:31:50 +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 ca9039ae..1b39265a 100644 --- a/1-js/02-first-steps/05-types/article.md +++ b/1-js/02-first-steps/05-types/article.md @@ -254,7 +254,7 @@ To put it clear: `typeof` is an operator, not a function. The parentheses here a Usually, such parentheses contain a mathematical expression, such as `(2 + 2)`, but here they contain only one argument `(x)`. Syntactically, they allow to avoid a space between the `typeof` operator and its argument, and some people like it. -Some people prefer `typeof(x)`, although the `typeof x` syntax is much more common. +So, some people prefer `typeof(x)`, although the `typeof x` syntax is much more common. ``` ## Summary