From c1d95f4643808913da8b61ae42559ce1c62468f9 Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Fri, 10 May 2024 15:16:12 +0200 Subject: [PATCH] private docs... --- iroh-blobs/src/downloader/get.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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, }