We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7cfc34 commit acf66b1Copy full SHA for acf66b1
src/libcore/fmt/mod.rs
@@ -127,9 +127,9 @@ impl<'a> Arguments<'a> {
127
/// to prevent modification.
128
///
129
/// The `format_args!` macro will safely create an instance of this structure
130
-/// and pass it to a user-supplied function. The macro validates the format
131
-/// string at compile-time so usage of the `write` and `format` functions can
132
-/// be safely performed.
+/// and pass it to a function or closure, passed as the first argument. The
+/// macro validates the format string at compile-time so usage of the `write`
+/// and `format` functions can be safely performed.
133
pub struct Arguments<'a> {
134
fmt: &'a [rt::Piece<'a>],
135
args: &'a [Argument<'a>],
0 commit comments