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.
2 parents 1ff0f8e + ac72c4f commit 4db7780Copy full SHA for 4db7780
src/scope/lifetime/lifetime_bounds.md
@@ -8,7 +8,7 @@ but `+` is the same. Note how the following read:
8
2. `T: Trait + 'a`: Type `T` must implement trait `Trait` and *all* references
9
in `T` must outlive `'a`.
10
11
-The example below shows the above syntax in action:
+The example below shows the above syntax in action used after keyword `where`:
12
13
```rust,editable
14
use std::fmt::Debug; // Trait to bound with.
@@ -50,4 +50,4 @@ fn main() {
50
51
[generics]: generics.html
52
[bounds]: generics/bounds.html
53
-[multibounds]: generics/multi_bounds.html
+[multibounds]: generics/multi_bounds.html
0 commit comments