1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-06-26 22:07:42 +02:00

Intradoc links conversion (#227)

* intra doc conversion

* rm trailing blank comment
This commit is contained in:
Aravinth Manivannan
2020-12-14 13:52:30 +05:30
committed by GitHub
parent 02a902068f
commit b296d0f254
7 changed files with 7 additions and 13 deletions

View File

@ -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<u64, MyError>;