From cb02f366dca49d1147ded5c2c0d31b56af22e5b2 Mon Sep 17 00:00:00 2001 From: Ricardo Martins Date: Sat, 14 Mar 2015 12:42:12 +0000 Subject: [PATCH] Fix a typo in the documentation. --- src/doc/trpl/concurrency.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/concurrency.md b/src/doc/trpl/concurrency.md index 9b6d6ca67f6c8..4a16db63950dd 100644 --- a/src/doc/trpl/concurrency.md +++ b/src/doc/trpl/concurrency.md @@ -339,7 +339,7 @@ fn main() { }); } - rx.recv().ok().expect("Could not recieve answer"); + rx.recv().ok().expect("Could not receive answer"); } ```