summaryrefslogtreecommitdiffstats
path: root/tokio-test/src
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-08-17 23:34:25 -0700
committerGitHub <noreply@github.com>2019-08-17 23:34:25 -0700
commit88b4ec84d7f0f1653e2a9bb3231076fc18a91cb3 (patch)
tree68aefffcac44c32a85791ae0ee15c38a1422e52b /tokio-test/src
parent9f0daad5acafdd35c1577856e01021293d10849c (diff)
chore: prepare 0.2.0-alpha.2 release (#1465)
Diffstat (limited to 'tokio-test/src')
-rw-r--r--tokio-test/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tokio-test/src/lib.rs b/tokio-test/src/lib.rs
index 4d13bf4d..92d1cfd2 100644
--- a/tokio-test/src/lib.rs
+++ b/tokio-test/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio-test/0.2.0-alpha.1")]
+#![doc(html_root_url = "https://docs.rs/tokio-test/0.2.0-alpha.2")]
#![warn(
missing_debug_implementations,
missing_docs,
@@ -20,7 +20,7 @@ pub mod task;
/// For more information, see the documentation for
/// [`tokio::runtime::current_thread::Runtime::block_on`][runtime-block-on].
///
-/// [runtime-block-on]: https://docs.rs/tokio/0.2.0-alpha.1/tokio/runtime/current_thread/struct.Runtime.html#method.block_on
+/// [runtime-block-on]: https://docs.rs/tokio/0.2.0-alpha.2/tokio/runtime/current_thread/struct.Runtime.html#method.block_on
pub fn block_on<F: std::future::Future>(future: F) -> F::Output {
let mut rt = tokio::runtime::current_thread::Runtime::new().unwrap();
rt.block_on(future)