From bbaa75b59e6d018f08f6c74d6ab546d359b0a1b2 Mon Sep 17 00:00:00 2001 From: Sarah Lewis <280882+bookchiq@users.noreply.github.com> Date: Tue, 18 Aug 2020 16:28:35 -0700 Subject: [PATCH] Improve phrasing --- 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 f45cbe45..d0697b05 100644 --- a/1-js/02-first-steps/11-logical-operators/article.md +++ b/1-js/02-first-steps/11-logical-operators/article.md @@ -224,7 +224,7 @@ So the code `a && b || c && d` is essentially the same as if the `&&` expression ```` ````warn header="Don't replace `if` with || or &&" -Sometimes, people use the AND `&&` operator as a "shorter to write `if`". +Sometimes, people use the AND `&&` operator as a "shorter way to write `if`". For instance: