From 8963e3100a27787e8a7d1a5824345e67f3ee2917 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Thu, 3 Oct 2024 17:47:19 +0200 Subject: [PATCH] Update subxt/src/backend/chain_head/mod.rs --- subxt/src/backend/chain_head/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subxt/src/backend/chain_head/mod.rs b/subxt/src/backend/chain_head/mod.rs index f0a6eac1a4..5d2b85a68f 100644 --- a/subxt/src/backend/chain_head/mod.rs +++ b/subxt/src/backend/chain_head/mod.rs @@ -112,7 +112,7 @@ impl ChainHeadBackendBuilder { /// on the default runtime. /// /// - On non-wasm targets, this will spawn the driver on tokio. - /// - On wasm targets, this will spawn a wasm-bindgen task to run driver in the background until completion. + /// - On wasm targets, this will spawn the driver on `wasm-bindgen-futures`. #[cfg(feature = "runtime")] #[cfg_attr(docsrs, doc(cfg(feature = "runtime")))] pub fn build_with_background_driver(self, client: impl Into) -> ChainHeadBackend {