diff --git a/crates/task/src/lib.rs b/crates/task/src/lib.rs index 4419b17d05ad05..cde4fd4153b8ef 100644 --- a/crates/task/src/lib.rs +++ b/crates/task/src/lib.rs @@ -51,9 +51,9 @@ pub struct SpawnInTerminal { pub hide: HideStrategy, /// Which shell to use when spawning the task. pub shell: Shell, - /// Wether to hide the task line in the task output. + /// Whether to hide the task line in the task output. pub hide_task: bool, - /// Weather to hide the command line in the task output. + /// Whether to hide the command line in the task output. pub hide_command: bool, } diff --git a/crates/task/src/task_template.rs b/crates/task/src/task_template.rs index b455d43945cba2..4c2f66b2ad9fbc 100644 --- a/crates/task/src/task_template.rs +++ b/crates/task/src/task_template.rs @@ -57,10 +57,10 @@ pub struct TaskTemplate { /// Which shell to use when spawning the task. #[serde(default)] pub shell: Shell, - /// Wether to hide the task line in the task output. + /// Whether to hide the task line in the task output. #[serde(default)] pub hide_task: bool, - /// Weather to hide the command line in the task output. + /// Whether to hide the command line in the task output. #[serde(default)] pub hide_command: bool, }