From b296d0f254c46c5485f7d2ae760875eefa41c3a5 Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Mon, 14 Dec 2020 13:52:30 +0530 Subject: [PATCH] Intradoc links conversion (#227) * intra doc conversion * rm trailing blank comment --- actix-codec/src/lib.rs | 2 -- actix-connect/src/connect.rs | 4 ++-- actix-rt/src/runtime.rs | 4 ++-- actix-rt/src/system.rs | 2 -- actix-service/src/lib.rs | 4 ++-- actix-tracing/src/lib.rs | 2 -- string/src/lib.rs | 2 +- 7 files changed, 7 insertions(+), 13 deletions(-) diff --git a/actix-codec/src/lib.rs b/actix-codec/src/lib.rs index 07939549..8c346052 100644 --- a/actix-codec/src/lib.rs +++ b/actix-codec/src/lib.rs @@ -4,8 +4,6 @@ //! [`AsyncWrite`], to framed streams implementing [`Sink`] and [`Stream`]. //! Framed streams are also known as `transports`. //! -//! [`AsyncRead`]: AsyncRead -//! [`AsyncWrite`]: AsyncWrite //! [`Sink`]: futures_sink::Sink //! [`Stream`]: futures_core::Stream diff --git a/actix-connect/src/connect.rs b/actix-connect/src/connect.rs index 7d5531e5..37fa9c6e 100644 --- a/actix-connect/src/connect.rs +++ b/actix-connect/src/connect.rs @@ -138,7 +138,7 @@ impl fmt::Display for Connect { } } -/// Iterator over addresses in a [`Connect`](struct.Connect.html) request. +/// Iterator over addresses in a [`Connect`] request. #[derive(Clone)] pub struct ConnectAddrsIter<'a> { inner: Either, vec_deque::Iter<'a, SocketAddr>>, @@ -173,7 +173,7 @@ impl ExactSizeIterator for ConnectAddrsIter<'_> {} impl FusedIterator for ConnectAddrsIter<'_> {} -/// Owned iterator over addresses in a [`Connect`](struct.Connect.html) request. +/// Owned iterator over addresses in a [`Connect`] request. #[derive(Debug)] pub struct ConnectTakeAddrsIter { inner: Either, vec_deque::IntoIter>, diff --git a/actix-rt/src/runtime.rs b/actix-rt/src/runtime.rs index bbafb6f0..d3231192 100644 --- a/actix-rt/src/runtime.rs +++ b/actix-rt/src/runtime.rs @@ -7,7 +7,7 @@ use tokio::{runtime, task::LocalSet}; /// /// See [module level][mod] documentation for more details. /// -/// [mod]: index.html +/// [mod]: crate #[derive(Debug)] pub struct Runtime { local: LocalSet, @@ -34,7 +34,7 @@ impl Runtime { /// /// See [module level][mod] documentation for more details. /// - /// [mod]: index.html + /// [mod]: crate /// /// # Examples /// diff --git a/actix-rt/src/system.rs b/actix-rt/src/system.rs index f33854ba..2e1ae174 100644 --- a/actix-rt/src/system.rs +++ b/actix-rt/src/system.rs @@ -66,7 +66,6 @@ impl System { /// It means that using this method currently it is impossible to make `actix-rt` work in the /// alternative `tokio` `Runtime`s (e.g. provided by [`tokio_compat`]). /// - /// [`Arbiter`]: struct.Arbiter.html /// [`tokio_compat`]: https://crates.io/crates/tokio-compat /// /// # Examples @@ -131,7 +130,6 @@ impl System { /// It means that using this method currently it is impossible to make `actix-rt` work in the /// alternative `tokio` `Runtime`s (e.g. provided by `tokio_compat`). /// - /// [`Arbiter`]: struct.Arbiter.html /// [`tokio_compat`]: https://crates.io/crates/tokio-compat /// /// # Arguments diff --git a/actix-service/src/lib.rs b/actix-service/src/lib.rs index b25a6f98..96c878e3 100644 --- a/actix-service/src/lib.rs +++ b/actix-service/src/lib.rs @@ -1,4 +1,4 @@ -//! See [`Service`](trait.Service.html) docs for information on this crate's foundational trait. +//! See [`Service`] docs for information on this crate's foundational trait. #![deny(rust_2018_idioms, nonstandard_style)] #![allow(clippy::type_complexity)] @@ -67,7 +67,7 @@ pub use self::transform::{apply, Transform}; /// ``` /// /// Sometimes it is not necessary to implement the Service trait. For example, the above service -/// could be rewritten as a simple function and passed to [fn_service](fn.fn_service.html). +/// could be rewritten as a simple function and passed to [fn_service](fn_service()). /// /// ```rust,ignore /// async fn my_service(req: u8) -> Result; diff --git a/actix-tracing/src/lib.rs b/actix-tracing/src/lib.rs index c011790b..b61ffac8 100644 --- a/actix-tracing/src/lib.rs +++ b/actix-tracing/src/lib.rs @@ -60,8 +60,6 @@ where } /// A `Transform` implementation that wraps services with a [`TracingService`]. -/// -/// [`TracingService`]: struct.TracingService.html pub struct TracingTransform { make_span: F, _p: PhantomData, diff --git a/string/src/lib.rs b/string/src/lib.rs index 553c8634..18cbc890 100644 --- a/string/src/lib.rs +++ b/string/src/lib.rs @@ -11,7 +11,7 @@ use bytes::Bytes; /// A UTF-8 encoded string with [`Bytes`] as a storage. /// -/// [`Bytes`]: https://docs.rs/bytes/0.5.3/bytes/struct.Bytes.html +/// [`Bytes`]: bytes::Bytes #[derive(Clone, Eq, Ord, PartialOrd, Default)] pub struct ByteString(Bytes);