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: