From 7da5603a42face94423b91e5995d6a5cbdd806be Mon Sep 17 00:00:00 2001 From: Jake Goulding Date: Thu, 8 Mar 2018 11:48:46 -0500 Subject: [PATCH] Remove premature French translation of "current" (#197) --- src/runtime.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime.rs b/src/runtime.rs index efee51d7e..28cbdd3e6 100644 --- a/src/runtime.rs +++ b/src/runtime.rs @@ -159,12 +159,12 @@ struct Inner { /// /// * Start the Tokio runtime using a default configuration. /// * Spawn the given future onto the thread pool. -/// * Block the çurrent thread until the runtime shuts down. +/// * Block the current thread until the runtime shuts down. /// /// Note that the function will not return immediately once `future` has /// completed. Instead it waits for the entire runtime to become idle. /// -/// See [module level][mod] documentation for more details. +/// See the [module level][mod] documentation for more details. /// /// # Examples ///