Skip to content

Commit 57e3475

Browse files
author
rundrop1
committed
Update vectors.md
Feel silly because it's just one thing but it was bothering me that the documentation tells you what you're not going to learn now instead of linking to the item in question. Am total noob pls assist, where is power button. :)
1 parent f55e66a commit 57e3475

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/doc/trpl/vectors.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
% Vectors
22

33
A *vector* is a dynamic or "growable" array, implemented as the standard
4-
library type [`Vec<T>`](../std/vec/) (we'll talk about what the `<T>` means
5-
later). Vectors always allocate their data on the heap. Vectors are to slices
4+
library type [`Vec<T>`](../std/vec/) (Where `<T>` is a [Generic](./generics.md) statement). Vectors always allocate their data on the heap. Vectors are to slices
65
what `String` is to `&str`. You can create them with the `vec!` macro:
76

87
```{rust}

0 commit comments

Comments
 (0)