Skip to content

Commit

Permalink
Commit from GitHub Actions (test)
Browse files Browse the repository at this point in the history
  • Loading branch information
mise-en-dev committed Oct 7, 2024
1 parent a23984e commit 9a5f5a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/config/config_file/mise_toml.rs
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ impl<'de> de::Deserialize<'de> for EnvList {
{
struct ValVisitor;

impl<'de> Visitor<'de> for ValVisitor {
impl Visitor<'_> for ValVisitor {
type Value = Val;
fn expecting(
&self,
Expand Down Expand Up @@ -843,7 +843,7 @@ impl<'de> de::Deserialize<'de> for BackendArg {
{
struct BackendArgVisitor;

impl<'de> Visitor<'de> for BackendArgVisitor {
impl Visitor<'_> for BackendArgVisitor {
type Value = BackendArg;
fn expecting(&self, formatter: &mut Formatter) -> std::fmt::Result {
formatter.write_str("backend argument")
Expand Down
2 changes: 1 addition & 1 deletion src/shell/nushell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ enum EnvOp<'a> {
Hide { key: &'a str },
}

impl<'a> Display for EnvOp<'a> {
impl Display for EnvOp<'_> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
#[allow(clippy::write_with_newline)]
match self {
Expand Down

0 comments on commit 9a5f5a5

Please sign in to comment.