From e35f6d684dc45f170c5c42147abd521b6d85385c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enes=20Ayd=C4=B1n?= Date: Mon, 7 Jul 2025 02:01:54 +0300 Subject: [PATCH] Update vec.md (#2810) With #1898 the slices were moved to day 1. So I deleted the day 3 slice reference sentence in day 2 vec.md. --- src/std-types/vec.md | 2 -- 1 file changed, 2 deletions(-) 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.