diff --git a/src/command/mod.rs b/src/command/mod.rs index 109f7263..032e5323 100644 --- a/src/command/mod.rs +++ b/src/command/mod.rs @@ -22,7 +22,7 @@ pub fn batch(commands: impl IntoIterator>) -> Command { } /// Yields a command which will run the future on the runtime executor. -pub fn future(future: impl Future + Send + 'static) -> Command { +pub fn future(future: impl Future + Send + 'static) -> Command { Command::single(Action::Future(Box::pin(future))) }