Merge pull request #2069 from bookchiq/patch-1

Improve phrasing
This commit is contained in:
Ilya Kantor 2020-08-27 16:48:53 +03:00 committed by GitHub
commit 71988e17b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: