Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions core/src/common/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ use crate::{
/// A `Live` variant for [`State`]
#[derive(Debug, Clone, clap::Args)]
pub struct LiveState {
/// 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.
#[arg(
short,
long,
value_parser = parse::url,
num_args = 1..,
value_delimiter = ',',
required = true,
)]
pub uri: Vec<String>,
Expand Down
Loading