summaryrefslogtreecommitdiffstats
path: root/futures/src/backend/wasm/wasm_bindgen.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector@hecrj.dev>2024-07-05 02:34:39 +0200
committerLibravatar GitHub <noreply@github.com>2024-07-05 02:34:39 +0200
commit978327f9e7f68d3e5bc280faa0617487d8eabc57 (patch)
treee0ea35f42d41568a792b0b22eb119226908cb6a7 /futures/src/backend/wasm/wasm_bindgen.rs
parente50aa03edc858d561992d8ca441aa063f273eeac (diff)
parentc9e0ed7ca4a7fce23450b9aeba6eb79244832521 (diff)
downloadiced-978327f9e7f68d3e5bc280faa0617487d8eabc57.tar.gz
iced-978327f9e7f68d3e5bc280faa0617487d8eabc57.tar.bz2
iced-978327f9e7f68d3e5bc280faa0617487d8eabc57.zip
Merge pull request #2493 from iced-rs/hide-subscription-internals
Hide `Subscription` internals
Diffstat (limited to 'futures/src/backend/wasm/wasm_bindgen.rs')
-rw-r--r--futures/src/backend/wasm/wasm_bindgen.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/futures/src/backend/wasm/wasm_bindgen.rs b/futures/src/backend/wasm/wasm_bindgen.rs
index 3228dd18..f7846c01 100644
--- a/futures/src/backend/wasm/wasm_bindgen.rs
+++ b/futures/src/backend/wasm/wasm_bindgen.rs
@@ -26,7 +26,7 @@ pub mod time {
pub fn every(
duration: std::time::Duration,
) -> Subscription<wasm_timer::Instant> {
- Subscription::from_recipe(Every(duration))
+ subscription::from_recipe(Every(duration))
}
#[derive(Debug)]