From e8bd2117d03e35664643773c51b77e056bba75bd Mon Sep 17 00:00:00 2001 From: Jan Zerebecki Date: Mon, 27 Feb 2017 11:07:19 +0100 Subject: [PATCH] Fix typo in docblock for Core::run() --- 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 914e3fc37..e369d2e33 100644 --- a/src/reactor/mod.rs +++ b/src/reactor/mod.rs @@ -204,7 +204,7 @@ impl Core { /// otherwise waiting for the future to complete. /// /// This function will begin executing the event loop and will finish once - /// the provided future is resolve. Note that the future argument here + /// the provided future is resolved. Note that the future argument here /// crucially does not require the `'static` nor `Send` bounds. As a result /// the future will be "pinned" to not only this thread but also this stack /// frame.