Skip to content

Commit 01e1281

Browse files
committed
fix uri argument order
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
1 parent 65b296a commit 01e1281

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

core/src/common/state.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ use crate::{
4848
/// A `Live` variant for [`State`]
4949
#[derive(Debug, Clone, clap::Args)]
5050
pub struct LiveState {
51-
/// The url(s) to connect to. Can be provided multiple times for parallel state download.
51+
/// The url(s) to connect to. Can be comma-separated (no spaces) for parallel download.
5252
#[arg(
5353
short,
5454
long,
5555
value_parser = parse::url,
56-
num_args = 1..,
56+
value_delimiter = ',',
5757
required = true,
5858
)]
5959
pub uri: Vec<String>,

0 commit comments

Comments
 (0)