From 4267d22a805d80e19759941d52b241d228a1aaba Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Thu, 21 May 2020 13:42:14 +0300 Subject: [PATCH] minor fixes --- 1-js/02-first-steps/11-logical-operators/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/11-logical-operators/article.md b/1-js/02-first-steps/11-logical-operators/article.md index c2b779d3..f45cbe45 100644 --- a/1-js/02-first-steps/11-logical-operators/article.md +++ b/1-js/02-first-steps/11-logical-operators/article.md @@ -125,7 +125,7 @@ This leads to some interesting usage compared to a "pure, classical, boolean-onl That importance of this feature becomes obvious if an operand isn't just a value, but an expression with a side effect, such as a variable assignment or a function call. - In the example below, the first message is printed, while the second is not: + In the example below, only the second message is printed: ```js run no-beautify *!*true*/!* || alert("not printed");