Skip to content

Commit 8f94061

Browse files
authored
Merge pull request #1869 from samliok/patch-1
Update lifetime_bounds.md
2 parents e691ace + 5ad879d commit 8f94061

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scope/lifetime/lifetime_bounds.md

+1-1
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)