diff --git a/docs/Rust/section5/collections.md b/docs/Rust/section5/collections.md
index 9a578136e..63d3410fd 100644
--- a/docs/Rust/section5/collections.md
+++ b/docs/Rust/section5/collections.md
@@ -19,6 +19,8 @@ There are three commonly used collections in Rust:
- Hashmaps - key-value data structures that store a **map** of information.
- Strings - a collection of characters that are stored on the heap.
+
+
## Vectors
The official type declaration of a vector is `Vec`, which represents a list of any generic type