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 a707381 commit 62fb4e0Copy full SHA for 62fb4e0
src/trait-bounds.md
@@ -167,7 +167,7 @@ The type parameter `T` is required to outlive `'a` for the type `&'a T` to be we
167
This is inferred because the function signature contains the type `&'a T` which is
168
only valid if `T: 'a` holds.
169
170
-Rust adds implied bounds for all inputs and outputs of functions. Inside of `requires_t_outlives_a`
+Rust adds implied bounds for all parameters and outputs of functions. Inside of `requires_t_outlives_a`
171
you can assume `T: 'a` to hold even if you don't explicitly specify this:
172
```rust
173
fn requires_t_outlives_a_not_implied<'a, T: 'a>() {}
0 commit comments