Skip to content

Commit 8d039bd

Browse files
authored
Update macros-by-example.md
1 parent a00cc5d commit 8d039bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/macros-by-example.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ foo_ok!();
230230

231231
One consequence of such expansion is that deeper nested levels make dollar-dollar declarations grown linearly, starting at `$$`, then `$$$$`, then `$$$$$` and so on. This is also necessary to be fully featured so that it is possible to specify names of metavariables using other metavariables at each nesting level.
232232

233-
```
233+
```ignore
234234
$foo => bar => bar // Evaluate foo at level 1
235235
$$foo => $foo => bar // Evaluate foo at level 2
236236
$$$foo => $bar => baz // Evaluate foo at level 1, and use that as a name at level 2

0 commit comments

Comments
 (0)