Skip to content

Commit 5cdc619

Browse files
authored
libsql-server: fix duplicated "the" in doc-comments (#2234)
Two one-line typo fixes for duplicated "the" in `libsql-server` doc-comments: - `libsql-server/src/main.rs` — "By default, the the period is 30 seconds." → "By default, the period is 30 seconds." - `libsql-server/src/rpc/streaming_exec.rs` — "/// Apply the response to the the builder, and return whether..." → "/// Apply the response to the builder, ..." No code/behavior change.
2 parents 61d629a + cc9cfaa commit 5cdc619

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

libsql-server/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ struct Cli {
153153
heartbeat_auth: Option<String>,
154154

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

libsql-server/src/rpc/streaming_exec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ impl StreamResponseBuilder {
206206
}
207207
}
208208

209-
/// Apply the response to the the builder, and return whether the builder need more steps
209+
/// Apply the response to the builder, and return whether the builder need more steps
210210
pub fn apply_program_resp_to_builder<B: QueryResultBuilder>(
211211
config: &QueryBuilderConfig,
212212
builder: &mut B,

0 commit comments

Comments
 (0)