Fix clippy 1.67 warnings (#5697)

This commit is contained in:
Miguel Madrid-Mencía 2023-01-27 16:43:46 +01:00 committed by GitHub
parent 4d548a0ee3
commit d2d3024337
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 10 deletions

View file

@ -14,7 +14,7 @@ pub fn user_lang_config() -> Result<toml::Value, toml::de::Error> {
.chain([crate::config_dir()].into_iter())
.map(|path| path.join("languages.toml"))
.filter_map(|file| {
std::fs::read_to_string(&file)
std::fs::read_to_string(file)
.map(|config| toml::from_str(&config))
.ok()
})

View file

@ -515,5 +515,5 @@ pub fn load_runtime_file(language: &str, filename: &str) -> Result<String, std::
.join("queries")
.join(language)
.join(filename);
std::fs::read_to_string(&path)
std::fs::read_to_string(path)
}