diff options
author | 2025-02-14 19:52:17 +0100 | |
---|---|---|
committer | 2025-02-14 19:52:17 +0100 | |
commit | ba996f4b01103174f3134c304a83da8b4d3acf88 (patch) | |
tree | 090f9330cf805a74d533945edd40e9994404bca9 /futures/src/subscription.rs | |
parent | cc8b326dfc84aaea3a570c9ad129eb8aaedfcb8c (diff) | |
download | iced-ba996f4b01103174f3134c304a83da8b4d3acf88.tar.gz iced-ba996f4b01103174f3134c304a83da8b4d3acf88.tar.bz2 iced-ba996f4b01103174f3134c304a83da8b4d3acf88.zip |
Fix outdated `id` mention in `Subscription` docs
Diffstat (limited to '')
-rw-r--r-- | futures/src/subscription.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/futures/src/subscription.rs b/futures/src/subscription.rs index 82cba9a1..3577d19f 100644 --- a/futures/src/subscription.rs +++ b/futures/src/subscription.rs @@ -210,7 +210,8 @@ impl<T> Subscription<T> { /// Returns a [`Subscription`] that will create and asynchronously run the /// given [`Stream`]. /// - /// The `id` will be used to uniquely identify the [`Subscription`]. + /// Both the `data` and the function pointer will be used to uniquely identify + /// the [`Subscription`]. pub fn run_with<D, S>(data: D, builder: fn(&D) -> S) -> Self where D: Hash + 'static, |