diff --git a/tonic/src/transport/channel/mod.rs b/tonic/src/transport/channel/mod.rs index f5b1486..e32a774 100644 --- a/tonic/src/transport/channel/mod.rs +++ b/tonic/src/transport/channel/mod.rs @@ -49,7 +49,7 @@ const DEFAULT_BUFFER_SIZE: usize = 1024; /// # Multiplexing requests /// /// Sending a request on a channel requires a `&mut self` and thus can only send -/// on request in flight. This is intentional and is required to follow the `Service` +/// one request in flight. This is intentional and is required to follow the `Service` /// contract from the `tower` library which this channel implementation is built on /// top of. ///