i think this is what was meant to be there, please check

Naja Melan
2014-04-24 06:33:37 -07:00
parent 38c0dccb21
commit 86b4507cca

@@ -15,7 +15,7 @@
### Rationale: ### Rationale:
It's common to use `A && B` to run `B` when `A` is true, and `A || C` to run `C` is `A` is false. It's common to use `A && B` to run `B` when `A` is true, and `A || C` to run `C` when `A` is false.
However, combining them into `A && B || C` is not the same as `if A then B else C`. However, combining them into `A && B || C` is not the same as `if A then B else C`.