From 5debffe3886cf8f27fe9ca5710c586d250017d9c Mon Sep 17 00:00:00 2001 From: Asmir Avdicevic Date: Wed, 22 Oct 2025 22:21:21 +0200 Subject: [PATCH 1/2] fix: typo in blog post --- src/app/blog/iroh-0-94-0-the-endpoint-takeover/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/blog/iroh-0-94-0-the-endpoint-takeover/page.mdx b/src/app/blog/iroh-0-94-0-the-endpoint-takeover/page.mdx index 03ede2b0..7a353999 100644 --- a/src/app/blog/iroh-0-94-0-the-endpoint-takeover/page.mdx +++ b/src/app/blog/iroh-0-94-0-the-endpoint-takeover/page.mdx @@ -40,7 +40,7 @@ We have a bunch of API changes and features for you in this one, all of which ar * New defaults for Discovery -* Updated `EndpointAddr` (rpPreviously `NodeAddr`) to support additional transports +* Updated `EndpointAddr` (Previously `NodeAddr`) to support additional transports * `iroh-base::ticket` has moved to its own `iroh-tickets` crate! From eb8c3a84e3d534cff6260e68fef27fc976712016 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cramfox=E2=80=9D?= <“kasey@n0.computer”> Date: Wed, 22 Oct 2025 16:27:04 -0400 Subject: [PATCH 2/2] blog: more spelling errors --- src/app/docs/concepts/discovery/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/docs/concepts/discovery/page.mdx b/src/app/docs/concepts/discovery/page.mdx index a9265b13..72fb84f4 100644 --- a/src/app/docs/concepts/discovery/page.mdx +++ b/src/app/docs/concepts/discovery/page.mdx @@ -65,7 +65,7 @@ DHT Discovery is _not_ enabled by default, and must be enabled by the user. You' iroh = { version = "0.nn", features = ["discovery-pkarr-dht"] } ``` -Then configure your endpoint to use DHT discovery concurrently with mDNS discovery, but not with the default DNS discovery, use the `Endpoint::empty_builder` method. This requires specifiying a `RelayMode`, which in this example we will keep default. +Then configure your endpoint to use DHT discovery concurrently with mDNS discovery, but not with the default DNS discovery, use the `Endpoint::empty_builder` method. This requires specifying a `RelayMode`, which in this example we will keep default. ```rust use iroh::Endpoint;