From 31114431136931456beb8ceb57da01de2156f68a Mon Sep 17 00:00:00 2001 From: Dan Munckton Date: Tue, 25 Apr 2017 19:26:43 +0100 Subject: [PATCH] Update links to pages in the tokio.rs going-deeper section See: tokio-rs/website#72 --- src/io/mod.rs | 2 +- src/reactor/poll_evented.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/io/mod.rs b/src/io/mod.rs index c3f7e7d11..ccd55443f 100644 --- a/src/io/mod.rs +++ b/src/io/mod.rs @@ -7,7 +7,7 @@ //! addition to a description of the [low level details]. //! //! [found online]: https://tokio.rs/docs/getting-started/core/ -//! [low level details]: https://tokio.rs/docs/going-deeper/core-low-level/ +//! [low level details]: https://tokio.rs/docs/going-deeper-tokio/core-low-level/ #![deprecated(note = "moved to the `tokio-io` crate")] diff --git a/src/reactor/poll_evented.rs b/src/reactor/poll_evented.rs index 5d30b5c09..26934b69d 100644 --- a/src/reactor/poll_evented.rs +++ b/src/reactor/poll_evented.rs @@ -37,7 +37,7 @@ use reactor::io_token::IoToken; /// /// You can find more information about creating a custom I/O object [online]. /// -/// [online]: https://tokio.rs/docs/going-deeper/core-low-level/#custom-io +/// [online]: https://tokio.rs/docs/going-deeper-tokio/core-low-level/#custom-io pub struct PollEvented { token: IoToken, handle: Remote,