Skip to content

Commit f633769

Browse files
authored
Merge pull request #1405 from simlay/fix-style-on-closure-example
Fixed styling on closure example
2 parents 03e23af + 49c84a1 commit f633769

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/fn/closures.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ example, a closure that captures the x variable:
77
|val| val + x
88
```
99

10-
The syntax and capabilities of closures make them very convenient for
10+
The syntax and capabilities of closures make them very convenient for
1111
on the fly usage. Calling a closure is exactly like calling a function.
12-
However, both input and return types *can* be inferred and input
12+
However, both input and return types *can* be inferred and input
1313
variable names *must* be specified.
1414

1515
Other characteristics of closures include:
@@ -20,7 +20,7 @@ Other characteristics of closures include:
2020
```rust,editable
2121
fn main() {
2222
// Increment via closures and functions.
23-
fn function (i: i32) -> i32 { i + 1 }
23+
fn function(i: i32) -> i32 { i + 1 }
2424
2525
// Closures are anonymous, here we are binding them to references
2626
// Annotation is identical to function annotation but is optional

0 commit comments

Comments
 (0)