about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2020-07-18 22:31:35 -0700
committerGitHub <noreply@github.com>2020-07-18 22:31:35 -0700
commit8d470b57968fd875c2d9ce50446868b906f54752 (patch)
tree893e184a890d7ebabe15bf8b7de9554adbbdf5af
parent4a324b8117d5e7ffadca1bdc6d109486cc242464 (diff)
downloadrust-8d470b57968fd875c2d9ce50446868b906f54752.tar.gz
rust-8d470b57968fd875c2d9ce50446868b906f54752.zip
Update src/libstd/io/mod.rs
Co-authored-by: Joshua Nelson <joshua@yottadb.com>
-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 ce9dd19ace1..823ce30febe 100644
--- a/src/libstd/io/mod.rs
+++ b/src/libstd/io/mod.rs
@@ -1450,7 +1450,7 @@ pub trait Write {
     ///
     /// This method is primarily used to interface with the
     /// [`format_args!()`] macro, but it is rare that this should
-    /// explicitly be called. The [`write!()`][write] macro should be favored to
+    /// explicitly be called. The [`write!()`] macro should be favored to
     /// invoke this method instead.
     ///
     /// This function internally uses the [`write_all`][writeall] method on