From 155dff2813535da4d0e94c317e4d9ca8b6e41879 Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Thu, 2 Mar 2023 11:18:30 +0100 Subject: [PATCH] renaming of upstream --- src/imex/transfer.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/imex/transfer.rs b/src/imex/transfer.rs index cc951d18a..d8eb5821d 100644 --- a/src/imex/transfer.rs +++ b/src/imex/transfer.rs @@ -1,14 +1,14 @@ //! Transfer a backup to an other device. //! -//! This module provides support for using n0's sendme tool to initiate transfer of a backup +//! This module provides support for using n0's iroh tool to initiate transfer of a backup //! to another device using a QR code. //! -//! Using the sendme terminology there are two parties to this: +//! Using the iroh terminology there are two parties to this: //! //! - The *Provider*, which starts a server and listens for connections. //! - The *Getter*, which connects to the server and retrieves the data. //! -//! Sendme is designed around the idea of verifying hashes, the downloads are verified as +//! Iroh is designed around the idea of verifying hashes, the downloads are verified as //! they are retrieved. The entire transfer is initiated by requesting the data of a single //! root hash. //! @@ -166,7 +166,7 @@ impl BackupProvider { Ok((provider, ticket)) } - /// Supervises the sendme [`Provider`], terminating it when needed. + /// Supervises the iroh [`Provider`], terminating it when needed. /// /// This will watch the provider and terminate it when: ///