File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ example, a closure that captures the x variable:
7
7
| val | val + x
8
8
```
9
9
10
- The syntax and capabilities of closures make them very convenient for
10
+ The syntax and capabilities of closures make them very convenient for
11
11
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
13
13
variable names * must* be specified.
14
14
15
15
Other characteristics of closures include:
@@ -20,7 +20,7 @@ Other characteristics of closures include:
20
20
``` rust,editable
21
21
fn main() {
22
22
// Increment via closures and functions.
23
- fn function (i: i32) -> i32 { i + 1 }
23
+ fn function(i: i32) -> i32 { i + 1 }
24
24
25
25
// Closures are anonymous, here we are binding them to references
26
26
// Annotation is identical to function annotation but is optional
You can’t perform that action at this time.
0 commit comments