From 1d9e3daa07402222e0e65760c1ca32ffea7b26b0 Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Sun, 29 Sep 2019 10:39:57 -0400 Subject: [PATCH] Remove generated doc comment test --- tonic-build/src/client.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tonic-build/src/client.rs b/tonic-build/src/client.rs index 15cf1da..7894c53 100644 --- a/tonic-build/src/client.rs +++ b/tonic-build/src/client.rs @@ -61,10 +61,6 @@ fn generate_connect(service_ident: &syn::Ident) -> TokenStream { quote! { impl #service_ident { /// Attempt to create a new client by connecting to a given endpoint. - /// - /// ```rust,no_run - #doc_example - /// ``` pub fn connect(dst: D) -> Result where D: std::convert::TryInto,