about summary refs log tree commit diff
path: root/library/core
diff options
context:
space:
mode:
authorburlinchen <chenbeiliuhuo@gmail.com>2024-08-13 08:40:08 +0800
committerburlinchen <chenbeiliuhuo@gmail.com>2024-08-13 08:40:08 +0800
commitc4333026a008741e5edba4bca1aae77aecba8d78 (patch)
treef6e16c1d4addfbf5aef52159693cec2723076df4 /library/core
parent72ef357ea31ed9b8c926bea6c1ae608ccc9dc0d2 (diff)
downloadrust-c4333026a008741e5edba4bca1aae77aecba8d78.tar.gz
rust-c4333026a008741e5edba4bca1aae77aecba8d78.zip
chore(lib): fmt core::fmt::Formatter's write_fmt method
Diffstat (limited to 'library/core')
-rw-r--r--library/core/src/fmt/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/fmt/mod.rs b/library/core/src/fmt/mod.rs
index 8143ff4addc..6078a71cb69 100644
--- a/library/core/src/fmt/mod.rs
+++ b/library/core/src/fmt/mod.rs
@@ -1630,7 +1630,7 @@ impl<'a> Formatter<'a> {
     ///
     /// This method should generally not be invoked manually, but rather through
     /// the [`write!`] macro itself.
-    /// 
+    ///
     /// Writes some formatted information into this instance.
     ///
     /// # Examples