Skip to content

Commit

Permalink
add a parenthetical in the 0.20 blog post
Browse files Browse the repository at this point in the history
  • Loading branch information
dwrensha committed Sep 18, 2024
1 parent 9dc828f commit 2b12eba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions blog/_posts/2024-09-17-0.20-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -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..];
Expand Down

0 comments on commit 2b12eba

Please sign in to comment.