Skip to content

Commit

Permalink
Remove unnecessary cast from intro
Browse files Browse the repository at this point in the history
  • Loading branch information
colemickens committed Jul 23, 2014
1 parent 217f1fb commit 6bb22a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/intro.md
Expand Up @@ -276,7 +276,7 @@ fn main() {
spawn(proc() {
let numbers = rx.recv();
println!("{:d}", numbers[num as uint]);
println!("{:d}", numbers[num]);
})
}
}
Expand Down

5 comments on commit 6bb22a9

@bors
Copy link
Contributor

@bors bors commented on 6bb22a9 Jul 24, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from alexcrichton
at colemickens@6bb22a9

@bors
Copy link
Contributor

@bors bors commented on 6bb22a9 Jul 24, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging colemickens/rust/patch-3 = 6bb22a9 into auto

@bors
Copy link
Contributor

@bors bors commented on 6bb22a9 Jul 24, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

colemickens/rust/patch-3 = 6bb22a9 merged ok, testing candidate = 0246419

@bors
Copy link
Contributor

@bors bors commented on 6bb22a9 Jul 24, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 0246419

Please sign in to comment.