docs(service): remove reference to service_fn_ok (#1978)

This function has been otherwise removed and the link was broken.
This commit is contained in:
Christopher Vittal
2019-10-17 13:22:30 -04:00
committed by Sean McArthur
parent 5cb95bdda4
commit 1235f1de9a

View File

@@ -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
//!