From 4d8d29391338f665b68f2210aa1664bad47cda24 Mon Sep 17 00:00:00 2001 From: king6cong Date: Fri, 12 May 2017 17:58:57 +0800 Subject: [PATCH] typo fix --- src/reactor/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reactor/mod.rs b/src/reactor/mod.rs index c73108e0b..000d3308f 100644 --- a/src/reactor/mod.rs +++ b/src/reactor/mod.rs @@ -616,7 +616,7 @@ impl Remote { /// /// This function takes a closure which is executed within the context of /// the I/O loop itself. The future returned by the closure will be - /// scheduled on the event loop an run to completion. + /// scheduled on the event loop and run to completion. /// /// Note that while the closure, `F`, requires the `Send` bound as it might /// cross threads, the future `R` does not.