diff options
author | Gurwinder S <vargwin@gmail.com> | 2019-06-02 23:53:36 +0530 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-06-02 14:23:36 -0400 |
commit | bbc8de0c7a6a086ea7b0b79c6f5b005f9f374a7d (patch) | |
tree | a183933d5f81e10a91fd883781e14c739ee912f9 | |
parent | d438a6d259f79d1dd98d50ada01debbe24ca5a29 (diff) |
Fix typo (#2443)
-rw-r--r-- | cli/tokio_util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tokio_util.rs b/cli/tokio_util.rs index 9204b2ae1..4c4b36d5e 100644 --- a/cli/tokio_util.rs +++ b/cli/tokio_util.rs @@ -30,7 +30,7 @@ where /// /// This creates a new tokio runtime, with many new threads, to execute the /// given future. This is useful when we want to block the main runtime to -/// resolve a future without worrying that we'll us up all the threads in the +/// resolve a future without worrying that we'll use up all the threads in the /// main runtime. pub fn block_on<F, R, E>(future: F) -> Result<R, E> where |