Skip to content

Commit

Permalink
Fix clippy warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
azriel91 committed Oct 10, 2020
1 parent 4aaa7fe commit 636d7a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crate/credent_fs/src/credentials_file_loader.rs
Expand Up @@ -77,7 +77,7 @@ impl CredentialsFileLoader {
profiles
.0
.into_iter()
.find(|profile| &profile.name == profile_name)
.find(|profile| profile.name == profile_name)
})
.transpose()
})
Expand Down

0 comments on commit 636d7a3

Please sign in to comment.