From afbd73326cb510101747f0c17fd0edafbef41b34 Mon Sep 17 00:00:00 2001 From: James Prestwich Date: Fri, 20 Aug 2021 09:13:57 -0700 Subject: [PATCH] nit: fix misspelled comment --- ethers-providers/src/pubsub.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethers-providers/src/pubsub.rs b/ethers-providers/src/pubsub.rs index 668704cc4..6bd6bc444 100644 --- a/ethers-providers/src/pubsub.rs +++ b/ethers-providers/src/pubsub.rs @@ -48,7 +48,7 @@ where /// /// ### Note /// Most providers treat `SubscriptionStream` IDs as global singletons. - /// Instanitating this directly with a known ID will likely cause any + /// Instantiating this directly with a known ID will likely cause any /// existing streams with that ID to end. To avoid this, start a new stream /// using [`Provider::subscribe`] instead of `SubscriptionStream::new`. pub fn new(id: U256, provider: &'a Provider

) -> Result {