Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
Fixup cluster_query.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyera Eulberg committed Dec 1, 2023
1 parent f0954b9 commit 50baf5e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cli/src/cluster_query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ impl ClusterQuerySubCommands for App<'_, '_> {
.takes_value(true)
.value_name("EPOCH")
.validator(is_epoch)
.help("Epoch to show leader schedule for. [default: current]"),
.help("Epoch to show leader schedule for [default: current]"),
),
)
.subcommand(
Expand Down Expand Up @@ -323,8 +323,8 @@ impl ClusterQuerySubCommands for App<'_, '_> {
.long("slot-limit")
.takes_value(true)
.help(
"Limit results to this many slots from the end of the epoch [default: \
full epoch]",
"Limit results to this many slots from the end of the epoch \
[default: full epoch]",
),
),
)
Expand Down Expand Up @@ -413,7 +413,7 @@ impl ClusterQuerySubCommands for App<'_, '_> {
.validator(is_slot)
.help(concatcp!(
"Minimum slot distance from the tip to consider a validator \
delinquent. [default: ",
delinquent [default: ",
DELINQUENT_VALIDATOR_SLOT_DISTANCE,
"]",
)),
Expand Down

0 comments on commit 50baf5e

Please sign in to comment.