From 1722d8ed45a654e40034360b0984c2248326a9a8 Mon Sep 17 00:00:00 2001 From: Denis Andrejew Date: Fri, 3 Mar 2017 18:38:56 +0000 Subject: [PATCH] fix typo in reactor::Core::run docs --- 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 e369d2e33..afa4daeb7 100644 --- a/src/reactor/mod.rs +++ b/src/reactor/mod.rs @@ -209,7 +209,7 @@ impl Core { /// the future will be "pinned" to not only this thread but also this stack /// frame. /// - /// This function will returns the value that the future resolves to once + /// This function will return the value that the future resolves to once /// the future has finished. If the future never resolves then this function /// will never return. ///