Update src/trait-bounds.md

Co-authored-by: Ryan Scheel <Ryan.havvy@gmail.com>
This commit is contained in:
lcnr 2022-10-21 09:37:28 +02:00 committed by Eric Huss
parent c0c23b844e
commit a707381666
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ fn call_on_ref_zero<F>(f: F) where F: for<'a> Fn(&'a i32) {
## Implied bounds
Lifetime bounds required for types to be well-formed are sometimes inferred by the compiler.
Lifetime bounds required for types to be well-formed are sometimes inferred.
```rust
fn requires_t_outlives_a<'a, T>(x: &'a T) {}