From 961b3b4e6c4fa55517cd99336c1f47e438061cf6 Mon Sep 17 00:00:00 2001 From: shikhar Date: Wed, 6 Nov 2024 22:06:50 -0500 Subject: [PATCH] doc: consistency --- src/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index 2a4a788..c3d05e8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -49,19 +49,19 @@ struct Cli { #[derive(Subcommand, Debug)] enum Commands { - /// Manage s2-cli configuration + /// Manage CLI configuration. Config { #[command(subcommand)] action: ConfigActions, }, - // Operate on an S2 account. + /// Operate on an S2 account. Account { #[command(subcommand)] action: AccountActions, }, - // Operate on an S2 basin. + /// Operate on an S2 basin. Basin { /// Name of the basin to manage. basin: String, @@ -70,7 +70,7 @@ enum Commands { action: BasinActions, }, - /// Operate on an S2 stream. + /// Operate on an S2 stream. Stream { /// Name of the basin. basin: String,