diff --git a/tonic/src/transport/channel/mod.rs b/tonic/src/transport/channel/mod.rs index 4d24c2491..f1c781003 100644 --- a/tonic/src/transport/channel/mod.rs +++ b/tonic/src/transport/channel/mod.rs @@ -39,7 +39,7 @@ const DEFAULT_BUFFER_SIZE: usize = 1024; /// A default batteries included `transport` channel. /// -/// This provides a fully featured http2 gRPC client based on [`hyper::Client`] +/// This provides a fully featured http2 gRPC client based on `hyper` /// and `tower` services. /// /// # Multiplexing requests diff --git a/tonic/src/transport/server/mod.rs b/tonic/src/transport/server/mod.rs index ba65b46fc..71172da2d 100644 --- a/tonic/src/transport/server/mod.rs +++ b/tonic/src/transport/server/mod.rs @@ -82,8 +82,8 @@ const DEFAULT_HTTP2_KEEPALIVE_TIMEOUT_SECS: u64 = 20; /// A default batteries included `transport` server. /// -/// This is a wrapper around [`hyper::Server`] and provides an easy builder -/// pattern style builder [`Server`]. This builder exposes easy configuration parameters +/// This provides an easy builder pattern style builder [`Server`] on top of +/// `hyper` connections. This builder exposes easy configuration parameters /// for providing a fully featured http2 based gRPC server. This should provide /// a very good out of the box http2 server for use with tonic but is also a /// reference implementation that should be a good starting point for anyone