diff --git a/yazi-cli/src/args.rs b/yazi-cli/src/args.rs index a71f9c79..e22f8e9a 100644 --- a/yazi-cli/src/args.rs +++ b/yazi-cli/src/args.rs @@ -79,7 +79,7 @@ pub(super) struct CommandPub { /// Send the message with a JSON body. #[arg(long)] pub(super) json: Option, - /// Send the message as string of list. + /// Send the message as a list of strings. #[arg(long, num_args = 0..)] pub(super) list: Vec, } @@ -109,7 +109,7 @@ pub(super) struct CommandPubTo { /// Send the message with a JSON body. #[arg(long)] pub(super) json: Option, - /// Send the message as string of list. + /// Send the message as a list of strings. #[arg(long, num_args = 0..)] pub(super) list: Vec, }