We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
write!
std::fmt
1 parent e2bd2d8 commit bbd0040Copy full SHA for bbd0040
src/libcollections/fmt.rs
@@ -261,8 +261,8 @@
261
//! This and `writeln` are two macros which are used to emit the format string
262
//! to a specified stream. This is used to prevent intermediate allocations of
263
//! format strings and instead directly write the output. Under the hood, this
264
-//! function is actually invoking the `write` function defined in this module.
265
-//! Example usage is:
+//! function is actually invoking the `write_fmt` function defined on the
+//! `std::io::Write` trait. Example usage is:
266
//!
267
//! ```
268
//! # #![allow(unused_must_use)]
0 commit comments