From 9ea03c2c44ad6bf76e4141e6fb40870b9b30ab63 Mon Sep 17 00:00:00 2001 From: Bryan Stenson <93951028+BryanStenson-okta@users.noreply.github.com> Date: Tue, 28 Jun 2022 13:47:34 -0700 Subject: [PATCH] chore(doc): Fix typo in endpoint docs (#1026) --- tonic/src/transport/channel/endpoint.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tonic/src/transport/channel/endpoint.rs b/tonic/src/transport/channel/endpoint.rs index 32ce858b6..1de3f1ce2 100644 --- a/tonic/src/transport/channel/endpoint.rs +++ b/tonic/src/transport/channel/endpoint.rs @@ -377,7 +377,7 @@ impl Endpoint { /// Connect with a custom connector lazily. /// /// This allows you to build a [Channel](struct.Channel.html) that uses a non-HTTP transport - /// connec to it lazily. + /// connect to it lazily. /// /// See the `uds` example for an example on how to use this function to build channel that /// uses a Unix socket transport.