diff --git a/libafl/src/executors/command.rs b/libafl/src/executors/command.rs index fdf977c9a3..078713746a 100644 --- a/libafl/src/executors/command.rs +++ b/libafl/src/executors/command.rs @@ -152,7 +152,7 @@ impl CommandConfigurator for StdCommandConfigurator { /// Construct a `CommandExecutor` by implementing [`CommandConfigurator`] for a type of your choice and calling [`CommandConfigurator::into_executor`] on it. /// Instead, you can use [`CommandExecutor::builder()`] to construct a [`CommandExecutor`] backed by a [`StdCommandConfigurator`]. pub struct CommandExecutor { - /// The wrapped comand configurer + /// The wrapped command configurer configurer: T, /// The observers used by this executor observers: OT, @@ -526,7 +526,7 @@ impl CommandExecutorBuilder { self } - /// Builds the `ComandExecutor` + /// Builds the `CommandExecutor` pub fn build( &self, observers: OT, @@ -537,7 +537,7 @@ impl CommandExecutorBuilder { { let Some(program) = &self.program else { return Err(Error::illegal_argument( - "ComandExecutor::builder: no program set!", + "CommandExecutor::builder: no program set!", )); };