summaryrefslogtreecommitdiffstats
path: root/core/src
diff options
context:
space:
mode:
Diffstat (limited to 'core/src')
-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 {