Rollup merge of #23363 - meqif:master, r=alexcrichton

There was a minor typo in the book's concurrency section (\"recieve\" instead of \"receive\").
This commit is contained in:
Manish Goregaokar 2015-03-15 05:14:22 +05:30
commit 911f7fec81

View File

@ -339,7 +339,7 @@ fn main() {
});
}
rx.recv().ok().expect("Could not recieve answer");
rx.recv().ok().expect("Could not receive answer");
}
```