From 4aa7b163425648926454564aa4116ed6f20f9fee Mon Sep 17 00:00:00 2001 From: Protryon Date: Wed, 18 Oct 2023 09:29:40 -0700 Subject: [PATCH] Fix documentation for max_send_buffer_size (#718) --- src/client.rs | 2 +- src/server.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client.rs b/src/client.rs index e83ef6a4..b329121a 100644 --- a/src/client.rs +++ b/src/client.rs @@ -1023,7 +1023,7 @@ impl Builder { /// stream have been written to the connection, the send buffer capacity /// will be freed up again. /// - /// The default is currently ~400MB, but may change. + /// The default is currently ~400KB, but may change. /// /// # Panics /// diff --git a/src/server.rs b/src/server.rs index f1f4cf47..bb20adc5 100644 --- a/src/server.rs +++ b/src/server.rs @@ -937,7 +937,7 @@ impl Builder { /// stream have been written to the connection, the send buffer capacity /// will be freed up again. /// - /// The default is currently ~400MB, but may change. + /// The default is currently ~400KB, but may change. /// /// # Panics ///