We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65b296a commit 01e1281Copy full SHA for 01e1281
1 file changed
core/src/common/state.rs
@@ -48,12 +48,12 @@ use crate::{
48
/// A `Live` variant for [`State`]
49
#[derive(Debug, Clone, clap::Args)]
50
pub struct LiveState {
51
- /// The url(s) to connect to. Can be provided multiple times for parallel state download.
+ /// The url(s) to connect to. Can be comma-separated (no spaces) for parallel download.
52
#[arg(
53
short,
54
long,
55
value_parser = parse::url,
56
- num_args = 1..,
+ value_delimiter = ',',
57
required = true,
58
)]
59
pub uri: Vec<String>,
0 commit comments