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 d68cb4d commit ee688e4Copy full SHA for ee688e4
src/fn/closures/closure_examples/iter_any.md
@@ -15,7 +15,7 @@ pub trait Iterator {
15
// `FnMut` meaning any captured variable may at most be
16
// modified, not consumed. `Self::Item` states it takes
17
// arguments to the closure by value.
18
- F: FnMut(Self::Item) -> bool {}
+ F: FnMut(Self::Item) -> bool;
19
}
20
```
21
0 commit comments