Skip to content

Commit 1374727

Browse files
authored
Merge pull request #1087 from ehuss/fix-recursion_limit-example
2 parents df5799c + 064e68d commit 1374727

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/attributes/limits.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ syntax to specify the recursion depth.
1515
#![recursion_limit = "4"]
1616
1717
macro_rules! a {
18-
() => { a!(1) };
19-
(1) => { a!(2) };
20-
(2) => { a!(3) };
21-
(3) => { a!(4) };
18+
() => { a!(1); };
19+
(1) => { a!(2); };
20+
(2) => { a!(3); };
21+
(3) => { a!(4); };
2222
(4) => { };
2323
}
2424

0 commit comments

Comments
 (0)