From cc9cfaaefac17925f03f66e45dbf18a38b2bef1c Mon Sep 17 00:00:00 2001 From: Aiden Park <275402320+vip892766gma@users.noreply.github.com> Date: Thu, 14 May 2026 04:28:19 +0000 Subject: [PATCH] libsql-server: fix duplicated "the" in doc-comments --- libsql-server/src/main.rs | 2 +- libsql-server/src/rpc/streaming_exec.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libsql-server/src/main.rs b/libsql-server/src/main.rs index 307d5482fe..aad76d825d 100644 --- a/libsql-server/src/main.rs +++ b/libsql-server/src/main.rs @@ -153,7 +153,7 @@ struct Cli { heartbeat_auth: Option, /// 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, diff --git a/libsql-server/src/rpc/streaming_exec.rs b/libsql-server/src/rpc/streaming_exec.rs index 482ce2074c..1ee72ffdbe 100644 --- a/libsql-server/src/rpc/streaming_exec.rs +++ b/libsql-server/src/rpc/streaming_exec.rs @@ -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( config: &QueryBuilderConfig, builder: &mut B,