]> git.lizzy.rs Git - rust.git/blobdiff - library/core/src/fmt/mod.rs
Auto merge of #106696 - kylematsuda:early-binder, r=lcnr
[rust.git] / library / core / src / fmt / mod.rs
index 51e6a76cea848c540ac8a6beda22fa434c7a6e88..fa5073e3304d72e93dff7a042804e043b234caa8 100644 (file)
@@ -174,6 +174,11 @@ fn write_char(&mut self, c: char) -> Result {
     /// This method should generally not be invoked manually, but rather through
     /// the [`write!`] macro itself.
     ///
+    /// # Errors
+    ///
+    /// This function will return an instance of [`Error`] on error. Please see
+    /// [write_str](Write::write_str) for details.
+    ///
     /// # Examples
     ///
     /// ```