Remove quotes around AND operator

This commit is contained in:
Brent Guffens 2018-01-17 21:26:44 +01:00 committed by GitHub
parent 062388f403
commit 3f04442b79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -196,7 +196,7 @@ Given multiple AND'ed values:
result = value1 && value2 && value3;
```
The AND `"&&"` operator does the following:
The AND `&&` operator does the following:
- Evaluate operands from left to right.
- For each operand, convert it to a boolean. If the result is `false`, stop and return the original value of that operand.