Rollup merge of #62381 - pawroman:fix_typo_in_write_vectored, r=Centril
Fix a typo in Write::write_vectored docs Fixed what seems like a typo. "Copy to from" is extremely confusing.
This commit is contained in:
commit
c5d18600ef
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
||||
///
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue