summaryrefslogtreecommitdiffstats
path: root/futures/src/subscription.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-14 19:52:17 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-14 19:52:17 +0100
commitba996f4b01103174f3134c304a83da8b4d3acf88 (patch)
tree090f9330cf805a74d533945edd40e9994404bca9 /futures/src/subscription.rs
parentcc8b326dfc84aaea3a570c9ad129eb8aaedfcb8c (diff)
downloadiced-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.rs3
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,