From 4b29eefc361d9b2362d3f6519f5de9183f9df90f Mon Sep 17 00:00:00 2001 From: Jackson Coxson Date: Fri, 9 May 2025 13:42:49 -0600 Subject: [PATCH] Typo in afc help message --- tools/src/afc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/src/afc.rs b/tools/src/afc.rs index c38b7f6..fe090fb 100644 --- a/tools/src/afc.rs +++ b/tools/src/afc.rs @@ -46,7 +46,7 @@ async fn main() { ) .subcommand( Command::new("download") - .about("Creates a directory") + .about("Downloads a file") .arg(Arg::new("path").required(true).index(1)) .arg(Arg::new("save").required(true).index(2)), )