From 96db606908e3345fc3cdfd556d678f40ef481375 Mon Sep 17 00:00:00 2001 From: L1AN0 <57596891+L1AN0@users.noreply.github.com> Date: Tue, 14 Jul 2020 13:41:39 -0700 Subject: [PATCH] Fix typo in doc. (#398) --- tonic/src/transport/channel/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. ///