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,