diff --git a/src/scope/lifetime/lifetime_bounds.md b/src/scope/lifetime/lifetime_bounds.md index e3d0a438ad..8df5f96125 100644 --- a/src/scope/lifetime/lifetime_bounds.md +++ b/src/scope/lifetime/lifetime_bounds.md @@ -8,7 +8,7 @@ but `+` is the same. Note how the following read: 2. `T: Trait + 'a`: Type `T` must implement trait `Trait` and *all* references in `T` must outlive `'a`. -The example below shows the above syntax in action: +The example below shows the above syntax in action used after keyword `where`: ```rust,editable use std::fmt::Debug; // Trait to bound with. @@ -50,4 +50,4 @@ fn main() { [generics]: generics.html [bounds]: generics/bounds.html -[multibounds]: generics/multi_bounds.html \ No newline at end of file +[multibounds]: generics/multi_bounds.html