diff --git a/src/trait-bounds.md b/src/trait-bounds.md index cc3f4a1bd..f284ca4eb 100644 --- a/src/trait-bounds.md +++ b/src/trait-bounds.md @@ -122,7 +122,7 @@ For example, if `'a` is an unconstrained lifetime parameter, then `i32: 'static` >    `for` [_GenericParams_] Type bounds may be *higher ranked* over lifetimes. These bounds specify a bound -is true *for all* lifetimes. For example, a bound such as `for<'a> &'a T: +that is true *for all* lifetimes. For example, a bound such as `for<'a> &'a T: PartialEq` would require an implementation like ```rust