Skip to content

Commit 0a8dc67

Browse files
committed
maked variable name consistent
1 parent 7d0357d commit 0a8dc67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/error/iter_result.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ An `Iter::map` operation might fail, for example:
55
```rust,editable
66
fn main() {
77
let strings = vec!["tofu", "93", "18"];
8-
let possible_numbers: Vec<_> = strings
8+
let numbers: Vec<_> = strings
99
.into_iter()
1010
.map(|s| s.parse::<i32>())
1111
.collect();
12-
println!("Results: {:?}", possible_numbers);
12+
println!("Results: {:?}", numbers);
1313
}
1414
```
1515

0 commit comments

Comments
 (0)