diff --git a/src/imex/transfer.rs b/src/imex/transfer.rs index 5be590345..f391d2ada 100644 --- a/src/imex/transfer.rs +++ b/src/imex/transfer.rs @@ -414,7 +414,7 @@ impl From for EventType { /// This is a long running operation which will only when completed. /// /// Using [`Qr`] as argument is a bit odd as it only accepts one specific variant of it. It -/// does avoid having [`iroh::provider::Ticket`] in the primary API however, without +/// does avoid having [`iroh::dial::Ticket`] in the primary API however, without /// having to revert to untyped bytes. pub async fn get_backup(context: &Context, qr: Qr) -> Result<()> { ensure!( diff --git a/src/qr.rs b/src/qr.rs index cfa0caa06..82fab5e1f 100644 --- a/src/qr.rs +++ b/src/qr.rs @@ -497,7 +497,7 @@ fn decode_webrtc_instance(_context: &Context, qr: &str) -> Result { /// Decodes a [`DCBACKUP_SCHEME`] QR code. /// /// The format of this scheme is `DCBACKUP:`. The encoding is the -/// [`iroh::provider::Ticket`]'s `Display` impl. +/// [`iroh::dial::Ticket`]'s `Display` impl. fn decode_backup(qr: &str) -> Result { let payload = qr .strip_prefix(DCBACKUP_SCHEME)