Remove unnecessary cast from intro

This commit is contained in:
Cole Mickens 2014-07-22 23:10:18 -07:00
parent 217f1fbfc8
commit 6bb22a9d6d

View file

@ -276,7 +276,7 @@ fn main() {
spawn(proc() {
let numbers = rx.recv();
println!("{:d}", numbers[num as uint]);
println!("{:d}", numbers[num]);
})
}
}