From f5e070cdf6628a5ebd981d373929802317104e24 Mon Sep 17 00:00:00 2001 From: fxqnlr Date: Wed, 4 Sep 2024 09:56:42 +0200 Subject: clippy --fix --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 5d60a17..21f2a30 100644 --- a/src/main.rs +++ b/src/main.rs @@ -28,7 +28,7 @@ enum Commands { #[command(subcommand)] command: ListCommands, - /// Force GameVersion update + /// Force `GameVersion` update #[arg(long)] force_gameupdate: bool, }, @@ -262,7 +262,7 @@ async fn main() { Some(l) => lists_get(&config, &l).unwrap(), None => get_current_list(&config).unwrap(), }; - liststack.push(current) + liststack.push(current); } update(&config, liststack, clean, download, remove).await @@ -284,7 +284,7 @@ async fn main() { Some(l) => lists_get(&config, &l).unwrap(), None => get_current_list(&config).unwrap(), }; - liststack.push(current) + liststack.push(current); } download(&config, liststack, clean, remove).await -- cgit v1.2.3