We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 942f31f commit 42ad2d7Copy full SHA for 42ad2d7
src/libcore/macros.rs
@@ -682,15 +682,15 @@ mod builtin {
682
#[cfg(dox)]
683
macro_rules! file { () => ({ /* compiler built-in */ }) }
684
685
- /// A macro which stringifies its argument.
+ /// A macro which stringifies its arguments.
686
///
687
/// For more information, see the documentation for [`std::stringify!`].
688
689
/// [`std::stringify!`]: ../std/macro.stringify.html
690
#[stable(feature = "rust1", since = "1.0.0")]
691
#[macro_export]
692
693
- macro_rules! stringify { ($t:tt) => ({ /* compiler built-in */ }) }
+ macro_rules! stringify { ($($t:tt)*) => ({ /* compiler built-in */ }) }
694
695
/// Includes a utf8-encoded file as a string.
696
0 commit comments