Rollup merge of #25322 - frewsxcv:patch-23, r=steveklabnik

`if` can be a statement or also an expression.
This commit is contained in:
Manish Goregaokar 2015-05-12 22:57:52 +05:30
commit e216057dac

View file

@ -15,7 +15,7 @@ let x = true;
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