Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
maxdeviant committed Nov 20, 2024
1 parent 32d8f67 commit c66aa16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions crates/task/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}

Expand Down
4 changes: 2 additions & 2 deletions crates/task/src/task_template.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
Expand Down

0 comments on commit c66aa16

Please sign in to comment.