Remove duplicated mention of slices in 00_intro.md (#144)
authorTobias Hermann <editgym@gmail.com>
Wed, 11 Sep 2024 09:36:58 +0000 (11:36 +0200)
committerGitHub <noreply@github.com>
Wed, 11 Sep 2024 09:36:58 +0000 (11:36 +0200)
Slices are already mentioned in bullet point 4, so they can be removed from bullet point 2.

book/src/06_ticket_management/00_intro.md

index cad7aa8..7af5556 100644 (file)
@@ -8,7 +8,7 @@ store and retrieve tickets.
 The task will give us an opportunity to explore new Rust concepts, such as:
 
 - Stack-allocated arrays
-- `Vec`, a growable array type, and slices
+- `Vec`, a growable array type
 - `Iterator` and `IntoIterator`, for iterating over collections
 - Slices (`&[T]`), to work with parts of a collection
 - Lifetimes, to describe how long references are valid