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! 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;