Skip to content

Commit

Permalink
Fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
vcrn committed Dec 8, 2022
1 parent 6e5a4e5 commit d3f6009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/config/src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ impl Config {
if base_default_language_options != languages::LanguageOptions::default() {
println!("Warning: config.toml contains both default language specific information at base and under section `[languages.{}]`, \
which may cause merge conflicts. Please use only one to specify language specific information", self.default_language);
base_default_language_options.merge(&section_default_language_options)?;
base_default_language_options.merge(section_default_language_options)?;
} else {
return Ok(());
}
Expand Down

0 comments on commit d3f6009

Please sign in to comment.