Fix a typo in Write::write_vectored docs

This commit is contained in:
Paweł Romanowski 2019-07-04 18:44:34 +02:00
parent b43eb4235a
commit 7f035baaf7

View File

@ -1144,7 +1144,7 @@ pub trait Write {
/// Like `write`, except that it writes from a slice of buffers.
///
/// Data is copied to from each buffer in order, with the final buffer
/// Data is copied from each buffer in order, with the final buffer
/// read from possibly being only partially consumed. This method must
/// behave as a call to `write` with the buffers concatenated would.
///