Merge pull request #636 from dnaeon/if-expression

chapter03: `if` is an expression, not a statement
This commit is contained in:
Carol (Nichols || Goulding)
2017-05-03 19:03:19 -04:00
committed by GitHub

View File

@@ -174,7 +174,7 @@ fn main() {
```
The main way to consume boolean values is through conditionals, such as an `if`
statement. Well cover how `if` statements work in Rust in the “Control Flow”
expression. Well cover how `if` expressions work in Rust in the “Control Flow”
section.
#### The Character Type