Fix a typo in the documentation.

This commit is contained in:
Ricardo Martins 2015-03-14 12:42:12 +00:00
parent 766a4e1acc
commit cb02f366dc

View File

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