diff --git a/substrate/core/rpc/src/subscriptions.rs b/substrate/core/rpc/src/subscriptions.rs index 77e1d958f6..77df0c09fd 100644 --- a/substrate/core/rpc/src/subscriptions.rs +++ b/substrate/core/rpc/src/subscriptions.rs @@ -69,7 +69,7 @@ impl Subscriptions { /// Creates new subscription for given subscriber. /// /// Second parameter is a function that converts Subscriber sink into a future. - /// This future will be driven to completion bu underlying event loop + /// This future will be driven to completion by the underlying event loop /// or will be cancelled in case #cancel is invoked. pub fn add(&self, subscriber: Subscriber, into_future: G) where G: FnOnce(Sink) -> R,