Skip to content

Commit

Permalink
fix: correctly lowercase "zsh" for shell hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Dec 9, 2024
1 parent cbd660d commit 035ae59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shell/zsh.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ impl Shell for Zsh {

impl Display for Zsh {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "Zsh")
write!(f, "zsh")
}
}

Expand Down

0 comments on commit 035ae59

Please sign in to comment.