From 2b12eba63bc9cdf78ea62604a77080c9e7316433 Mon Sep 17 00:00:00 2001 From: David Renshaw Date: Tue, 17 Sep 2024 21:15:05 -0400 Subject: [PATCH] add a parenthetical in the 0.20 blog post --- blog/_posts/2024-09-17-0.20-release.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/blog/_posts/2024-09-17-0.20-release.md b/blog/_posts/2024-09-17-0.20-release.md index 1c2f375fd..06b977309 100644 --- a/blog/_posts/2024-09-17-0.20-release.md +++ b/blog/_posts/2024-09-17-0.20-release.md @@ -183,8 +183,9 @@ async fn write_bytes_streaming( let mut request = sink.write_request(); request.get().set_chunk(&bytes[..end]); - // Send the request and wait until the RPC system determines that - // we are clear to send another chunk. + // Send the request and wait until the RPC system determines + // that we are clear to send another chunk (which is typically + // *before* the response has returned). request.send().await?; bytes = &bytes[end..];