Skip to content

Commit

Permalink
transports/quic: fix broken intra-doc link
Browse files Browse the repository at this point in the history
  • Loading branch information
elenaf9 committed Sep 20, 2022
1 parent ec3c74a commit b7103aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions transports/quic/src/endpoint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ use std::{
time::{Duration, Instant},
};

/// Represents the configuration for the [`Endpoint`].
/// Represents the configuration for the QUIC endpoint.
#[derive(Debug, Clone)]
pub struct Config {
/// The client configuration to pass to `quinn_proto`.
Expand Down Expand Up @@ -225,7 +225,7 @@ pub enum ToEndpoint {
/// - One channel per each existing connection that communicates messages from the background
/// task to that [`Connection`].
/// - One channel for the background task to send newly-opened connections to. The receiving
/// side is processed by the [`crate::transport::Listener`].
/// side is processed by the [`QuicTransport`][crate::QuicTransport].
///
/// In order to avoid an unbounded buffering of events, we prioritize sending data on the UDP
/// socket over everything else. If the network interface is too busy to process our packets,
Expand Down

0 comments on commit b7103aa

Please sign in to comment.