From 326537b861b67343ac1bfc4f6bcee39b1c9ee428 Mon Sep 17 00:00:00 2001 From: Moritz Gunz Date: Wed, 21 Sep 2016 18:27:25 +0200 Subject: [PATCH] Fix documentation typos --- src/reactor/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/reactor/mod.rs b/src/reactor/mod.rs index b913748f1..4bb11a76b 100644 --- a/src/reactor/mod.rs +++ b/src/reactor/mod.rs @@ -540,7 +540,7 @@ impl Remote { } } - /// Spawns a new future into the event loop this handle is associated this. + /// Spawns a new future into the event loop this remote is associated with. /// /// 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 @@ -566,7 +566,7 @@ impl Handle { &self.remote } - /// Spawns a new future on the event loop this pin is associated this. + /// Spawns a new future on the event loop this handle is associated with. pub fn spawn(&self, f: F) where F: Future + 'static, {