From a9da59882c3781a8fdc8adefdf25b143aad1f372 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Thu, 8 Feb 2018 09:09:02 -0800 Subject: [PATCH] Fix example doc comment (#124) Fixes #123 --- examples/hello_world.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/hello_world.rs b/examples/hello_world.rs index fee066071..54a951289 100644 --- a/examples/hello_world.rs +++ b/examples/hello_world.rs @@ -62,7 +62,8 @@ pub fn main() { // implementations, each providing different scheduling characteristics. // // The `current_thread` executor multiplexes all scheduled tasks on the - // current thread. This means that spawned tasks must not implement `Send`. + // current thread. This means that spawned tasks are not required to + // implement `Send`. current_thread::run(|_| { // Now, the server task must be spawned. //