From 50d641b660cdb64d5b2342e0c0dcbd41a0329c72 Mon Sep 17 00:00:00 2001 From: Brian Shih Date: Mon, 5 Aug 2024 20:53:52 +0800 Subject: [PATCH] fix: typos --- DEFAULT_CONFIG.json5 | 2 +- commons/zenoh-config/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DEFAULT_CONFIG.json5 b/DEFAULT_CONFIG.json5 index b33dbeb8c..129b2d8a3 100644 --- a/DEFAULT_CONFIG.json5 +++ b/DEFAULT_CONFIG.json5 @@ -307,7 +307,7 @@ /// Configure the zenoh RX parameters of a link rx: { /// Receiving buffer size in bytes for each link - /// The default the rx_buffer_size value is the same as the default batch size: 65335. + /// The default the rx_buffer_size value is the same as the default batch size: 65535. /// For very high throughput scenarios, the rx_buffer_size can be increased to accommodate /// more in-flight data. This is particularly relevant when dealing with large messages. /// E.g. for 16MiB rx_buffer_size set the value to: 16777216. diff --git a/commons/zenoh-config/src/lib.rs b/commons/zenoh-config/src/lib.rs index 7732a5bbc..a6aedaa59 100644 --- a/commons/zenoh-config/src/lib.rs +++ b/commons/zenoh-config/src/lib.rs @@ -411,7 +411,7 @@ validated_struct::validator! { }, pub rx: LinkRxConf { /// Receiving buffer size in bytes for each link - /// The default the rx_buffer_size value is the same as the default batch size: 65335. + /// The default the rx_buffer_size value is the same as the default batch size: 65535. /// For very high throughput scenarios, the rx_buffer_size can be increased to accommodate /// more in-flight data. This is particularly relevant when dealing with large messages. /// E.g. for 16MiB rx_buffer_size set the value to: 16777216.