Fix spacing in code of closures.md

The spacing seems inconsistent with existing style conventions.
This commit is contained in:
Phil Ruffwind 2016-07-11 15:25:12 -04:00
parent f0bab98695
commit 9e3986188d

View File

@ -262,7 +262,7 @@ the result:
```rust
fn call_with_one<F>(some_closure: F) -> i32
where F : Fn(i32) -> i32 {
where F: Fn(i32) -> i32 {
some_closure(1)
}
@ -279,7 +279,7 @@ Lets examine the signature of `call_with_one` in more depth:
```rust
fn call_with_one<F>(some_closure: F) -> i32
# where F : Fn(i32) -> i32 {
# where F: Fn(i32) -> i32 {
# some_closure(1) }
```
@ -288,7 +288,7 @@ isnt interesting. The next part is:
```rust
# fn call_with_one<F>(some_closure: F) -> i32
where F : Fn(i32) -> i32 {
where F: Fn(i32) -> i32 {
# some_closure(1) }
```