diff --git a/src/std-types/vec.md b/src/std-types/vec.md index c997c3b4..5da2e442 100644 --- a/src/std-types/vec.md +++ b/src/std-types/vec.md @@ -49,7 +49,5 @@ methods on a `Vec`. - To index the vector you use `[` `]`, but they will panic if out of bounds. Alternatively, using `get` will return an `Option`. The `pop` function will remove the last element. -- Slices are covered on day 3. For now, students only need to know that a value - of type `Vec` gives access to all of the documented slice methods, too.