Correct tense

This commit is contained in:
Matej Lach 2014-09-25 16:13:20 +01:00
parent 5a25537faf
commit 9ca399f14e

View File

@ -4490,7 +4490,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
only the elements that that closure returned `true` for:
only the elements that that closure returns `true` for:
```{rust}
for i in range(1i, 100i).filter(|x| x % 2 == 0) {