From 01f6746cf82d15a0d59e515c49cd14924717fd72 Mon Sep 17 00:00:00 2001 From: Dinesh Thakur Date: Wed, 20 Dec 2023 21:57:09 -0500 Subject: [PATCH] fix small_vectors.md link --- docs/small_vectors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/small_vectors.md b/docs/small_vectors.md index f267cec..5478280 100644 --- a/docs/small_vectors.md +++ b/docs/small_vectors.md @@ -4,7 +4,7 @@ By now, I hope I convinced you that `std::vector` is the first data structure th But even when we cleverly use `reserve` to prevent superfluous heap allocations and copies, there will be a least **one** heap allocation at the beginning. Can we do better? -Sure we can! If you have read already about the [small string optimization](../../small_strings) you know where this is going. +Sure we can! If you have read already about the [small string optimization](./small_strings.md) you know where this is going. # "Static" vectors and "Small" vectors