diff --git a/src/service/mod.rs b/src/service/mod.rs index 7ae62e4c..4f6d48af 100644 --- a/src/service/mod.rs +++ b/src/service/mod.rs @@ -15,10 +15,8 @@ //! to a single connection. It defines how to respond to **all** requests that //! connection will receive. //! -//! While it's possible to implement `Service` for a type manually, the helpers -//! [`service_fn`](service::service_fn) and -//! [`service_fn_ok`](service::service_fn_ok) should be sufficient for most -//! cases. +//! While it's possible to implement `Service` for a type manually, the helper +//! [`service_fn`](service::service_fn) should be sufficient for most cases. //! //! # MakeService //!