Correct typo in the Iterator adapters section

This commit is contained in:
Matej Lach 2014-09-24 13:35:33 +01:00
parent d853666c7b
commit 5a25537faf

View file

@ -4489,7 +4489,7 @@ This will print
```
`filter()` is an adapter that takes a closure as an argument. This closure
returns `true` or `false`. The new iterator `filter()` produces returns
returns `true` or `false`. The new iterator `filter()` produces
only the elements that that closure returned `true` for:
```{rust}