Skip to content

Commit 2386bca

Browse files
committed
fix spaces
1 parent 49e0c69 commit 2386bca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/docs/tour/5-routers/page.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ use iroh_gossip::Gossip;
1919

2020
#[tokio::main]
2121
async fn main() -> anyhow::Result<()> {
22-
let endpoint= Endpoint::bind().await?;
22+
let endpoint = Endpoint::bind().await?;
2323
let store = MemStore::new();
2424
let blobs = BlobsProtocol::new(&store,None);
2525

2626
let gossip = Gossip::builder().spawn(endpoint.clone());
2727

2828

2929
//build the router
30-
let router=Router::builder(endpoint)
30+
let router = Router::builder(endpoint)
3131
.accept(iroh_blobs::ALPN, blobs)
3232
.accept(iroh_gossip::ALPN, gossip)
3333
.spawn();

0 commit comments

Comments
 (0)