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.
2 parents ab072b1 + 680c9d8 commit 8c26bbdCopy full SHA for 8c26bbd
src/macros/repeat.md
@@ -9,7 +9,7 @@ match one or more expression, separated by commas.
9
Also note that the semicolon is optional on the last case.
10
11
```rust,editable
12
-// `min!` will calculate the minimum of any number of arguments.
+// `find_min!` will calculate the minimum of any number of arguments.
13
macro_rules! find_min {
14
// Base case:
15
($x:expr) => ($x);
@@ -25,4 +25,4 @@ fn main() {
25
println!("{}", find_min!(1u32 + 2, 2u32));
26
println!("{}", find_min!(5u32, 2u32 * 3, 4u32));
27
}
28
-```
+```
0 commit comments