Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/trait-bounds.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ fn call_on_ref_zero<F>(f: F) where for<'a> F: Fn(&'a i32) {
```

Higher-ranked lifetimes may also be specified just before the trait, the only
end of the following trait instead of the whole bound. This function is
difference is the scope of the lifetime parameter, which extends only to the
end of the following trait instead of the whole bound. This function is
equivalent to the last one.

```rust
Expand Down