Skip to content

Commit 4d40bb5

Browse files
Fix lint
1 parent 05c3289 commit 4d40bb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ async fn actual_main(cli_app: Ferium) -> Result<()> {
293293
config.profiles.iter_mut().for_each(|profile| {
294294
profile
295295
.mods
296-
.sort_by_cached_key(|mod_| mod_.name.to_lowercase())
296+
.sort_by_cached_key(|mod_| mod_.name.to_lowercase());
297297
});
298298
// Update config file with possibly edited config
299299
config::write_file(&mut config_file, &config).await?;

0 commit comments

Comments
 (0)