From 878a3d6e9aa47d51bb30def4792d94f71e283b9c Mon Sep 17 00:00:00 2001 From: Benjamin Saunders Date: Sat, 3 Jun 2023 18:06:37 -0700 Subject: [PATCH] Update obsolete doc comment --- quinn-proto/src/endpoint.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/quinn-proto/src/endpoint.rs b/quinn-proto/src/endpoint.rs index 1f1706ded..75998b2d4 100644 --- a/quinn-proto/src/endpoint.rs +++ b/quinn-proto/src/endpoint.rs @@ -34,9 +34,8 @@ use crate::{ /// The main entry point to the library /// -/// This object performs no I/O whatsoever. Instead, it generates a stream of packets to send via -/// `poll_transmit`, and consumes incoming packets and connection-generated events via `handle` and -/// `handle_event`. +/// This object performs no I/O whatsoever. Instead, it consumes incoming packets and +/// connection-generated events via `handle` and `handle_event`. pub struct Endpoint { rng: StdRng, index: ConnectionIndex,