We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4ab2b3 commit 7335c9fCopy full SHA for 7335c9f
src/doc/trpl/vectors.md
@@ -1,8 +1,9 @@
1
% Vectors
2
3
A ‘vector’ is a dynamic or ‘growable’ array, implemented as the standard
4
-library type [`Vec<T>`][vec]. That `<T>` is a [generic][generic], meaning we
5
-can have vectors of any type. Vectors always allocate their data on the heap.
+library type [`Vec<T>`][vec]. The `T` means that we can have vectors
+of any type (see the chapter on [generics][generic] for more).
6
+Vectors always allocate their data on the heap.
7
You can create them with the `vec!` macro:
8
9
```rust
0 commit comments