diff --git a/viz-tower/src/service.rs b/viz-tower/src/service.rs index a000720d..85846cb9 100644 --- a/viz-tower/src/service.rs +++ b/viz-tower/src/service.rs @@ -2,7 +2,7 @@ use std::task::{Context, Poll}; use viz_core::{BoxFuture, Error, Handler, Request, Response, Result}; -/// An adapter that makes a [`Handler`] into a [`Service`]. +/// An adapter that makes a [`Handler`] into a [`Service`](tower::Service). #[derive(Debug)] pub struct HandlerService(H);