We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e691ace + 5ad879d commit 8f94061Copy full SHA for 8f94061
src/scope/lifetime/lifetime_bounds.md
@@ -16,7 +16,7 @@ use std::fmt::Debug; // Trait to bound with.
16
#[derive(Debug)]
17
struct Ref<'a, T: 'a>(&'a T);
18
// `Ref` contains a reference to a generic type `T` that has
19
-// an unknown lifetime `'a`. `T` is bounded such that any
+// some lifetime `'a` unknown by `Ref`. `T` is bounded such that any
20
// *references* in `T` must outlive `'a`. Additionally, the lifetime
21
// of `Ref` may not exceed `'a`.
22
0 commit comments