From 73938e1e0ade5826ffbcf873d7e3e4ee96b7e13a Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Mon, 27 Jul 2020 15:38:47 -0400 Subject: [PATCH] chore: Fix typo in uds example (#417) Closes #350 --- examples/src/uds/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/src/uds/client.rs b/examples/src/uds/client.rs index f91cd6b..efa04fb 100644 --- a/examples/src/uds/client.rs +++ b/examples/src/uds/client.rs @@ -17,7 +17,7 @@ async fn main() -> Result<(), Box> { // We will ignore this uri because uds do not use it // if your connector does use the uri it will be provided // as the request to the `MakeConnection`. - let channel = Endpoint::try_from("lttp://[::]:50051")? + let channel = Endpoint::try_from("http://[::]:50051")? .connect_with_connector(service_fn(|_: Uri| { let path = "/tmp/tonic/helloworld";