1
Fork 0

Make mention of if more generic

`if` can be a statement or also an expression.
This commit is contained in:
Corey Farwell 2015-05-12 00:33:22 -04:00
parent 4b88e8f63e
commit d13f765be8

View file

@ -15,7 +15,7 @@ let x = true;
let y: bool = false; let y: bool = false;
``` ```
A common use of booleans is in [`if` statements][if]. A common use of booleans is in [`if` conditionals][if].
[if]: if.html [if]: if.html