Skip to content

Commit 4db7780

Browse files
authored
Merge pull request #1180 from peter-kehl/1179
For #1179
2 parents 1ff0f8e + ac72c4f commit 4db7780

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/scope/lifetime/lifetime_bounds.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ but `+` is the same. Note how the following read:
88
2. `T: Trait + 'a`: Type `T` must implement trait `Trait` and *all* references
99
in `T` must outlive `'a`.
1010

11-
The example below shows the above syntax in action:
11+
The example below shows the above syntax in action used after keyword `where`:
1212

1313
```rust,editable
1414
use std::fmt::Debug; // Trait to bound with.
@@ -50,4 +50,4 @@ fn main() {
5050

5151
[generics]: generics.html
5252
[bounds]: generics/bounds.html
53-
[multibounds]: generics/multi_bounds.html
53+
[multibounds]: generics/multi_bounds.html

0 commit comments

Comments
 (0)