net: fix ambiguity in TcpStream::try_write_vectored docs (#7067)

This commit is contained in:
Aeon 2025-01-06 05:16:58 -05:00 committed by GitHub
parent 463502cbaf
commit 67f127769b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -920,7 +920,7 @@ impl TcpStream {
/// were written.
///
/// Data is written from each buffer in order, with the final buffer read
/// from possible being only partially consumed. This method behaves
/// from possibly being only partially consumed. This method behaves
/// equivalently to a single call to [`try_write()`] with concatenated
/// buffers.
///