Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Prev Previous commit
Next Next commit
cli: Fix cargo doc
  • Loading branch information
lexnv authored Dec 1, 2022
commit 804aff6d4ab7875f7cda94b9c9451dddcb8869c1
4 changes: 2 additions & 2 deletions client/cli/src/params/pruning_params.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub struct PruningParams {
/// Options available:
/// 'archive' Keep the state of all blocks.
/// 'archive-canonical' Keep only the state of finalized blocks.
/// [number] Keep the state of the last number of finalized blocks.
/// number Keep the state of the last number of finalized blocks.
///
/// The default option is to keep the last 256 blocks (number == 256).
#[arg(alias = "pruning", long, value_name = "PRUNING_MODE")]
Expand All @@ -44,7 +44,7 @@ pub struct PruningParams {
/// Options available:
/// 'archive' Keep all blocks.
/// 'archive-canonical' Keep only finalized blocks.
/// [number] Keep the last number of finalized blocks.
/// number Keep the last number of finalized blocks.
///
/// The default option is 'archive-canonical'.
#[arg(alias = "keep-blocks", long, value_name = "COUNT")]
Expand Down