summaryrefslogtreecommitdiffstats
path: root/futures
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-04-02 03:48:29 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-04-02 03:48:29 +0200
commit0f745f0c140b69ec4925cf884f5bedb3a318b4fc (patch)
tree756aca396d8d78ebb2f8e9751e24bd13edb15fdb /futures
parent2ef1b4317a6d8a99cb9d9653597e09666bd9ea81 (diff)
downloadiced-0f745f0c140b69ec4925cf884f5bedb3a318b4fc.tar.gz
iced-0f745f0c140b69ec4925cf884f5bedb3a318b4fc.tar.bz2
iced-0f745f0c140b69ec4925cf884f5bedb3a318b4fc.zip
Fix missing link in `Command` documentation
Diffstat (limited to 'futures')
-rw-r--r--futures/src/command.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/futures/src/command.rs b/futures/src/command.rs
index 535ae4f7..d4f99b82 100644
--- a/futures/src/command.rs
+++ b/futures/src/command.rs
@@ -7,6 +7,7 @@ use futures::future::{Future, FutureExt};
/// using the `From` trait or [`Command::perform`].
///
/// [`Command`]: struct.Command.html
+/// [`Command::perform`]: #method.perform
pub struct Command<T> {
futures: Vec<BoxFuture<T>>,
}