Alignment nitpick

This commit is contained in:
mdinger 2015-04-04 20:34:59 -04:00
parent 1169693f03
commit 85f6c9ff84
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ The second is that the syntax is similar, but a bit different. I've added spaces
here to make them look a little closer:
```rust
fn plus_one_v1 ( x: i32 ) -> i32 { x + 1 }
fn plus_one_v1 (x: i32 ) -> i32 { x + 1 }
let plus_one_v2 = |x: i32 | -> i32 { x + 1 };
let plus_one_v3 = |x: i32 | x + 1 ;
```