Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/error/iter_result.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ fn main() {
## Collect the failed items with `map_err()` and `filter_map()`

`map_err` calls a function with the error, so by adding that to the previous
`filter_map` solution we can save them off to the side while iterating.
`filter_map` solution we can shave them off to the side while iterating.

```rust,editable
fn main() {
Expand Down
Loading