cli: more precise doc comment
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing

This commit is contained in:
Alex 2023-10-04 10:44:42 +02:00
parent 2e656b541b
commit 920dec393a

View file

@ -453,7 +453,7 @@ pub enum RepairWhat {
/// Do a full sync of metadata tables /// Do a full sync of metadata tables
#[structopt(name = "tables", version = garage_version())] #[structopt(name = "tables", version = garage_version())]
Tables, Tables,
/// Repair (resync/rebalance) the set of stored blocks /// Repair (resync/rebalance) the set of stored blocks in the cluster
#[structopt(name = "blocks", version = garage_version())] #[structopt(name = "blocks", version = garage_version())]
Blocks, Blocks,
/// Repropagate object deletions to the version table /// Repropagate object deletions to the version table
@ -471,7 +471,7 @@ pub enum RepairWhat {
#[structopt(subcommand)] #[structopt(subcommand)]
cmd: ScrubCmd, cmd: ScrubCmd,
}, },
/// Rebalance data blocks among storage locations /// Rebalance data blocks among HDDs on individual nodes
#[structopt(name = "rebalance", version = garage_version())] #[structopt(name = "rebalance", version = garage_version())]
Rebalance, Rebalance,
} }