diff --git a/node/actors/network/src/rpc/mod.rs b/node/actors/network/src/rpc/mod.rs index 7028987b..1e58ad17 100644 --- a/node/actors/network/src/rpc/mod.rs +++ b/node/actors/network/src/rpc/mod.rs @@ -120,7 +120,7 @@ pub(crate) struct Client { impl Client { /// Constructs a new client. // TODO(gprusak): at this point we don't need the clients to be reusable, - // so perhaps they should be constructed by `Servive::add_client` instead? + // so perhaps they should be constructed by `Service::add_client` instead? pub(crate) fn new(ctx: &ctx::Ctx, rate: limiter::Rate) -> Self { Client { limiter: limiter::Limiter::new(ctx, rate), diff --git a/node/libs/concurrency/src/net/tests.rs b/node/libs/concurrency/src/net/tests.rs index 17f2dc4b..69c7a1e7 100644 --- a/node/libs/concurrency/src/net/tests.rs +++ b/node/libs/concurrency/src/net/tests.rs @@ -9,7 +9,7 @@ async fn test_resolve() { .unwrap() .unwrap(); // We assume here that loopback host "localhost" is always configured here. - // If that turns out to be problematic we should use a more robust DNS resulution + // If that turns out to be problematic we should use a more robust DNS resolution // library, so that we can run our own DNS server in tests. assert!(!addrs.is_empty()); for addr in addrs {