Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rs/moq-native/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::sync::Arc;
/// Errors produced while configuring or establishing native MoQ connections.
///
/// Backend-specific failures live in per-backend error types ([`crate::tls::Error`],
/// [`crate::quinn::Error`], etc.). They're wrapped in `Arc` here so the aggregate
/// the per-backend `Error` types, etc.). They're wrapped in `Arc` here so the aggregate
/// stays `Clone` even though the underlying transport/IO errors are not.
#[derive(Debug, Clone, thiserror::Error)]
#[non_exhaustive]
Expand Down
2 changes: 1 addition & 1 deletion rs/moq-native/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ impl Server {

/// Returns the next partially established QUIC or WebTransport session.
///
/// This returns a [Request] instead of a [web_transport_quinn::Session]
/// This returns a [Request] instead of an established `web_transport` session
/// so the connection can be rejected early on an invalid path or missing auth.
///
/// The [Request] is either a WebTransport or a raw QUIC request.
Expand Down