Skip to content

Commit 8c26bbd

Browse files
authored
Merge pull request #1344 from keiichiw/patch-1
Fix an inline comment in macros/repeat.md
2 parents ab072b1 + 680c9d8 commit 8c26bbd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/macros/repeat.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ match one or more expression, separated by commas.
99
Also note that the semicolon is optional on the last case.
1010

1111
```rust,editable
12-
// `min!` will calculate the minimum of any number of arguments.
12+
// `find_min!` will calculate the minimum of any number of arguments.
1313
macro_rules! find_min {
1414
// Base case:
1515
($x:expr) => ($x);
@@ -25,4 +25,4 @@ fn main() {
2525
println!("{}", find_min!(1u32 + 2, 2u32));
2626
println!("{}", find_min!(5u32, 2u32 * 3, 4u32));
2727
}
28-
```
28+
```

0 commit comments

Comments
 (0)