Remove unnecessary code from an example

This commit is contained in:
Matej Lach 2014-09-24 12:39:16 +01:00
parent d853666c7b
commit 3c47d89614

View file

@ -4324,8 +4324,6 @@ and so we tell it that we want a vector of integers.
is one: is one:
```{rust} ```{rust}
let one_to_one_hundred = range(0i, 100i);
let greater_than_forty_two = range(0i, 100i) let greater_than_forty_two = range(0i, 100i)
.find(|x| *x >= 42); .find(|x| *x >= 42);