Skip to content

Commit

Permalink
Fixed one newly created instance of range(start, end).
Browse files Browse the repository at this point in the history
  • Loading branch information
genbattle committed Feb 12, 2015
1 parent 5fa9222 commit 9e9b1d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/trpl/concurrency.md
Expand Up @@ -354,7 +354,7 @@ use std::sync::mpsc;
fn main() {
let (tx, rx) = mpsc::channel();
for _ in range(0, 10) {
for _ in 0..10 {
let tx = tx.clone();
Thread::spawn(move || {
Expand Down

0 comments on commit 9e9b1d6

Please sign in to comment.