File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -682,15 +682,15 @@ mod builtin {
682
682
#[ cfg( dox) ]
683
683
macro_rules! file { ( ) => ( { /* compiler built-in */ } ) }
684
684
685
- /// A macro which stringifies its argument .
685
+ /// A macro which stringifies its arguments .
686
686
///
687
687
/// For more information, see the documentation for [`std::stringify!`].
688
688
///
689
689
/// [`std::stringify!`]: ../std/macro.stringify.html
690
690
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
691
691
#[ macro_export]
692
692
#[ cfg( dox) ]
693
- macro_rules! stringify { ( $t: tt) => ( { /* compiler built-in */ } ) }
693
+ macro_rules! stringify { ( $( $ t: tt) * ) => ( { /* compiler built-in */ } ) }
694
694
695
695
/// Includes a utf8-encoded file as a string.
696
696
///
Original file line number Diff line number Diff line change @@ -490,7 +490,7 @@ pub mod builtin {
490
490
#[ macro_export]
491
491
macro_rules! file { ( ) => ( { /* compiler built-in */ } ) }
492
492
493
- /// A macro which stringifies its argument .
493
+ /// A macro which stringifies its arguments .
494
494
///
495
495
/// This macro will yield an expression of type `&'static str` which is the
496
496
/// stringification of all the tokens passed to the macro. No restrictions
@@ -507,7 +507,7 @@ pub mod builtin {
507
507
/// ```
508
508
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
509
509
#[ macro_export]
510
- macro_rules! stringify { ( $t: tt) => ( { /* compiler built-in */ } ) }
510
+ macro_rules! stringify { ( $( $ t: tt) * ) => ( { /* compiler built-in */ } ) }
511
511
512
512
/// Includes a utf8-encoded file as a string.
513
513
///
You can’t perform that action at this time.
0 commit comments