diff --git a/src/vec/vec-layout.md b/src/vec/vec-layout.md index 8b570b1..9129952 100644 --- a/src/vec/vec-layout.md +++ b/src/vec/vec-layout.md @@ -17,7 +17,7 @@ pub struct Vec { And indeed this would compile. Unfortunately, it would be too strict. The compiler will give us too strict variance. So a `&Vec<&'static str>` -couldn't be used where an `&Vec<&'a str>` was expected. See [the chapter +couldn't be used where a `&Vec<&'a str>` was expected. See [the chapter on ownership and lifetimes][ownership] for all the details on variance. As we saw in the ownership chapter, the standard library uses `Unique` in place of