diff --git a/iroh-blobs/src/downloader/get.rs b/iroh-blobs/src/downloader/get.rs index 201f6425ec..83be43ebc3 100644 --- a/iroh-blobs/src/downloader/get.rs +++ b/iroh-blobs/src/downloader/get.rs @@ -1,4 +1,6 @@ -//! [`Getter`] implementation that performs requests over [`quinn::Connection`]s. +//! [`Getter`] implementation that performs requests over [`Connection`]s. +//! +//! [`Connection`]: iroh_net::magic_endpoint::Connection use crate::{ get::{db::get_to_db, error::GetError}, @@ -27,7 +29,9 @@ impl From for FailureAction { } } -/// [`Getter`] implementation that performs requests over [`quinn::Connection`]s. +/// [`Getter`] implementation that performs requests over [`Connection`]s. +/// +/// [`Connection`]: iroh_net::magic_endpoint::Connection pub(crate) struct IoGetter { pub store: S, }