Rollup merge of #32443 - tclfs:patch-8, r=steveklabnik

Docs: Change "statements" to "expressions" on `match`

I apt to use `expressions` over `statements`, because `match` is a expression in essence, though it can become a statement when followed a semicolon.
This commit is contained in:
Eduard-Mihai Burtescu 2016-03-23 17:59:16 +02:00
commit 2e9b40f576

View File

@ -1,7 +1,7 @@
% Patterns
Patterns are quite common in Rust. We use them in [variable
bindings][bindings], [match statements][match], and other places, too. Lets go
bindings][bindings], [match expressions][match], and other places, too. Lets go
on a whirlwind tour of all of the things patterns can do!
[bindings]: variable-bindings.html