projects
/
rust_exercises.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
97d13e5
)
Remove duplicated mention of slices in 00_intro.md (#144)
author
Tobias Hermann
<editgym@gmail.com>
Wed, 11 Sep 2024 09:36:58 +0000
(11:36 +0200)
committer
GitHub
<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
patch
|
blob
|
history
diff --git
a/book/src/06_ticket_management/00_intro.md
b/book/src/06_ticket_management/00_intro.md
index
cad7aa8
..
7af5556
100644
(file)
--- a/
book/src/06_ticket_management/00_intro.md
+++ b/
book/src/06_ticket_management/00_intro.md
@@
-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