diff options
| author | Thomas de Zeeuw <thomasdezeeuw@gmail.com> | 2020-04-07 00:00:07 +0200 |
|---|---|---|
| committer | Thomas de Zeeuw <thomasdezeeuw@gmail.com> | 2020-04-07 00:00:07 +0200 |
| commit | 5d09f9f0512a6b6c0082314897198a2cae52be70 (patch) | |
| tree | 1bbea860c5473fa6cb84cb01ca20e1b9cd22bc28 /src/libstd/io | |
| parent | 63118d1fd73c73eecfefdf723f580fd537ec6102 (diff) | |
| download | rust-5d09f9f0512a6b6c0082314897198a2cae52be70.tar.gz rust-5d09f9f0512a6b6c0082314897198a2cae52be70.zip | |
Put reference to write_vectored in quotes in doc
Diffstat (limited to 'src/libstd/io')
| -rw-r--r-- | src/libstd/io/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs index 6a60f1e087c..5ab88260d6a 100644 --- a/src/libstd/io/mod.rs +++ b/src/libstd/io/mod.rs @@ -1399,7 +1399,7 @@ pub trait Write { /// modify the slice to keep track of the bytes already written. /// /// Once this function returns, the contents of `bufs` are unspecified, as - /// this depends on how many calls to write_vectored were necessary. It is + /// this depends on how many calls to `write_vectored` were necessary. It is /// best to understand this function as taking ownership of `bufs` and to /// not use `bufs` afterwards. The underlying buffers, to which the /// `IoSlice`s point (but not the `IoSlice`s themselves), are unchanged and |
