Skip to content

Commit 3a40cbb

Browse files
Change wording on read_vectored docs
1 parent 339a938 commit 3a40cbb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/libstd/io/mod.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -570,8 +570,9 @@ pub trait Read {
570570
/// Like `read`, except that it reads into a slice of buffers.
571571
///
572572
/// Data is copied to fill each buffer in order, with the final buffer
573-
/// written to possibly being only partially filled. This method must behave
574-
/// as a single call to `read` with the buffers concatenated would.
573+
/// written to possibly being only partially filled. This method must
574+
/// behave equivalently to a single call to `read` with concatenated
575+
/// buffers.
575576
///
576577
/// The default implementation calls `read` with either the first nonempty
577578
/// buffer provided, or an empty one if none exists.

0 commit comments

Comments
 (0)