From c2c8e12ae6fa4af67b642fbc337ace2fd0a31e1a Mon Sep 17 00:00:00 2001 From: Benjamin Saunders Date: Sat, 6 Jun 2020 15:18:36 -0700 Subject: [PATCH] Style tweak --- quinn-h3/src/server.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/quinn-h3/src/server.rs b/quinn-h3/src/server.rs index 22486d009..6eb852594 100644 --- a/quinn-h3/src/server.rs +++ b/quinn-h3/src/server.rs @@ -395,12 +395,11 @@ impl Connecting { /// your needs. /// /// # Example: support multiple protocols over quic - /// ``` + /// ```no_run /// # use quinn; /// # async fn serve_h3(conn: quinn_h3::server::Connecting) { unimplemented!() } /// # async fn serve_tea(conn: quinn::Connecting) { unimplemented!() } /// # fn main() { - /// # return (); /// # use quinn_h3::{server, Settings}; /// # tokio::runtime::Runtime::new().unwrap().block_on(async { /// use std::net::ToSocketAddrs;