Skip to content

Commit

Permalink
cargo make format
Browse files Browse the repository at this point in the history
  • Loading branch information
matheus23 committed Dec 19, 2024
1 parent cd2bf41 commit 39106b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions iroh/src/endpoint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ impl Endpoint {
///
/// ```no_run
/// # async fn wrapper() -> testresult::TestResult {
/// use iroh::{Endpoint, watcher::Watcher};
/// use iroh::{watcher::Watcher, Endpoint};
///
/// let endpoint = Endpoint::builder()
/// .alpns(vec![b"my-alpn".to_vec()])
Expand Down Expand Up @@ -830,7 +830,7 @@ impl Endpoint {
/// To wait for a home relay connection to be established, use [`Watcher::initialized`]:
/// ```no_run
/// use futures_lite::StreamExt;
/// use iroh::{Endpoint, watcher::Watcher};
/// use iroh::{watcher::Watcher, Endpoint};
///
/// # let rt = tokio::runtime::Builder::new_current_thread().enable_all().build().unwrap();
/// # rt.block_on(async move {
Expand Down Expand Up @@ -866,7 +866,7 @@ impl Endpoint {
/// To get the first set of direct addresses use [`Watcher::initialized`]:
/// ```no_run
/// use futures_lite::StreamExt;
/// use iroh::{Endpoint, watcher::Watcher};
/// use iroh::{watcher::Watcher, Endpoint};
///
/// # let rt = tokio::runtime::Builder::new_current_thread().enable_all().build().unwrap();
/// # rt.block_on(async move {
Expand Down

0 comments on commit 39106b5

Please sign in to comment.