summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-12-28 12:19:04 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-12-28 12:19:04 +0100
commitb1f89699b48fc94ff09381ee3638cfc9937d5c7d (patch)
treee0bafe20287e8880c05639819622f316e966a3a6
parent62474d0e75e5689d878fb5551a85c67cae35bf12 (diff)
downloadiced-b1f89699b48fc94ff09381ee3638cfc9937d5c7d.tar.gz
iced-b1f89699b48fc94ff09381ee3638cfc9937d5c7d.tar.bz2
iced-b1f89699b48fc94ff09381ee3638cfc9937d5c7d.zip
Fix `Command::batch` documentation
-rw-r--r--core/src/command.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/command.rs b/core/src/command.rs
index b4aa19cc..1172976f 100644
--- a/core/src/command.rs
+++ b/core/src/command.rs
@@ -62,7 +62,7 @@ impl<T> Command<T> {
/// Creates a [`Command`] that performs the actions of all the given
/// commands.
///
- /// Once this command is run, all the futures will be exectued at once.
+ /// Once this command is run, all the commands will be exectued at once.
///
/// [`Command`]: struct.Command.html
pub fn batch(commands: impl Iterator<Item = Command<T>>) -> Self {