Skip to content

Commit b2277d6

Browse files
committed
w
1 parent 0028891 commit b2277d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/trait-bounds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ trait Trait<'a, T: 'a> {}
221221
// in the impl header.
222222
// impl<'a, T> Trait<'a, T> for () {}
223223

224-
// This compiles as `T: 'a` is implied by the self type `&'a ()`.
224+
// This compiles as `T: 'a` is implied by the self type `&'a T`.
225225
impl<'a, T> Trait<'a, T> for &'a T {}
226226
```
227227

0 commit comments

Comments
 (0)