Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion libsql-server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ struct Cli {
heartbeat_auth: Option<String>,

/// The heartbeat time period in seconds.
/// By default, the the period is 30 seconds.
/// By default, the period is 30 seconds.
#[clap(long, env = "SQLD_HEARTBEAT_PERIOD_S", default_value = "30")]
heartbeat_period_s: u64,

Expand Down
2 changes: 1 addition & 1 deletion libsql-server/src/rpc/streaming_exec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ impl StreamResponseBuilder {
}
}

/// Apply the response to the the builder, and return whether the builder need more steps
/// Apply the response to the builder, and return whether the builder need more steps
pub fn apply_program_resp_to_builder<B: QueryResultBuilder>(
config: &QueryBuilderConfig,
builder: &mut B,
Expand Down
Loading