Rollup merge of #31411 - tshepang:idiom, r=steveklabnik

This commit is contained in:
Steve Klabnik 2016-02-04 16:39:05 -05:00
commit cd418ba09b

View File

@ -3504,7 +3504,7 @@ An example of a `fn` type:
```
fn add(x: i32, y: i32) -> i32 {
return x + y;
x + y
}
let mut x = add(5,7);