about summary refs log tree commit diff
path: root/src/libstd/io
diff options
context:
space:
mode:
authorThomas de Zeeuw <thomasdezeeuw@gmail.com>2020-04-07 00:00:07 +0200
committerThomas de Zeeuw <thomasdezeeuw@gmail.com>2020-04-07 00:00:07 +0200
commit5d09f9f0512a6b6c0082314897198a2cae52be70 (patch)
tree1bbea860c5473fa6cb84cb01ca20e1b9cd22bc28 /src/libstd/io
parent63118d1fd73c73eecfefdf723f580fd537ec6102 (diff)
downloadrust-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.rs2
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