Skip to content

Commit 5ad879d

Browse files
authored
Update lifetime_bounds.md
1 parent e691ace commit 5ad879d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scope/lifetime/lifetime_bounds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use std::fmt::Debug; // Trait to bound with.
1616
#[derive(Debug)]
1717
struct Ref<'a, T: 'a>(&'a T);
1818
// `Ref` contains a reference to a generic type `T` that has
19-
// an unknown lifetime `'a`. `T` is bounded such that any
19+
// some lifetime `'a` unknown by `Ref`. `T` is bounded such that any
2020
// *references* in `T` must outlive `'a`. Additionally, the lifetime
2121
// of `Ref` may not exceed `'a`.
2222

0 commit comments

Comments
 (0)