Skip to content

Commit

Permalink
transports/quic: fix intra-doc-link
Browse files Browse the repository at this point in the history
  • Loading branch information
elenaf9 committed Oct 1, 2022
1 parent 2b80d05 commit a3ed858
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion transports/quic/src/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,10 @@ pub struct Connection {
/// Error on the connection as a whole.
#[derive(Debug, Clone, thiserror::Error)]
pub enum ConnectionError {
/// The [`EndpointDriver`](super::endpoint::EndpointDriver) has crashed.
/// The task driving the endpoint has crashed.
#[error("Endpoint driver crashed")]
EndpointDriverCrashed,

/// Error in the inner state machine.
#[error("{0}")]
Quinn(#[from] quinn_proto::ConnectionError),
Expand Down
2 changes: 1 addition & 1 deletion transports/quic/src/transport.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ pub enum TransportError {
#[error("{0}")]
Io(#[from] std::io::Error),

/// The [`EndpointDriver`](super::endpoint::EndpointDriver) has crashed.
/// The task driving the endpoint has crashed.
#[error("Endpoint driver crashed")]
EndpointDriverCrashed,
}
Expand Down

0 comments on commit a3ed858

Please sign in to comment.