about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorThomas de Zeeuw <thomasdezeeuw@gmail.com>2020-04-01 19:41:57 +0200
committerThomas de Zeeuw <thomasdezeeuw@gmail.com>2020-04-01 19:41:57 +0200
commitba91e7e374b3becd24ea133e0858dca201b794cc (patch)
tree31083fab942c3d6474a29497d41838c98b0405d0 /src/libstd
parent9745b1fc52efb22f6be501db9282d8202e290066 (diff)
downloadrust-ba91e7e374b3becd24ea133e0858dca201b794cc.tar.gz
rust-ba91e7e374b3becd24ea133e0858dca201b794cc.zip
Fix link to write_vectored
Diffstat (limited to 'src/libstd')
-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 68ce7e13e26..0d15db81c33 100644
--- a/src/libstd/io/mod.rs
+++ b/src/libstd/io/mod.rs
@@ -1388,7 +1388,7 @@ pub trait Write {
     ///
     /// If the buffer contains no data, this will never call [`write_vectored`].
     ///
-    /// [`write_vectored`]: #tymethod.write_vectored
+    /// [`write_vectored`]: #method.write_vectored
     /// [`ErrorKind::Interrupted`]: ../../std/io/enum.ErrorKind.html#variant.Interrupted
     ///
     /// # Notes