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.
1 parent 2e1b183 commit c573643Copy full SHA for c573643
src/decl-macros/minutiae/fragment-specifiers.md
@@ -363,7 +363,7 @@ This means if this capture is passed onto another macro invocation that captures
363
macro_rules! it_is_opaque {
364
(()) => { "()" };
365
(($tt:tt)) => { concat!("$tt is ", stringify!($tt)) };
366
- ($vis:vis ,) => { it_is_opaque!( ($vis) ); }
+ ($vis:vis ,) => { it_is_opaque!( ($vis) ) }
367
}
368
fn main() {
369
// this prints "$tt is ", as the recursive calls hits the second branch with
@@ -374,3 +374,4 @@ fn main() {
374
375
[`macro_rules`]: ../macro_rules.md
376
[Visibility qualifier]: https://doc.rust-lang.org/reference/visibility-and-privacy.html
377
+
0 commit comments