From 4e6119c39dea914daf9b3bc0f66640719f386159 Mon Sep 17 00:00:00 2001 From: Ralph Ronnquist Date: Fri, 22 Jul 2022 15:07:18 +1000 Subject: [PATCH] Spelling fix for consistent letter case --- vector/Vector.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vector/Vector.h b/vector/Vector.h index 7c9286c..0e369d7 100644 --- a/vector/Vector.h +++ b/vector/Vector.h @@ -30,7 +30,7 @@ typedef void* VectorPage[]; /** * \brief The implementation variants. * - * - byte_index_levels (0) has 8-bit indexing parts and index pages + * - Byte_index_levels (0) has 8-bit indexing parts and index pages * with 256 pointers, * * - Nibble_index_levels (1) has 4-bit indexing parts and index pages @@ -39,7 +39,7 @@ typedef void* VectorPage[]; * - BitPair_index_levels (2) has 2-bit indexing parts and index pages * with 4 pointers, * - * - single_index_level (3) has a single page that is sized as the + * - Single_index_level (3) has a single page that is sized as the * Vector. * * The first three variants are managed by adding/removing full pages @@ -52,10 +52,10 @@ typedef void* VectorPage[]; * \related Vector */ enum VectorVariant { - byte_index_levels = 0, + Byte_index_levels = 0, Nibble_index_levels = 1, BitPair_index_levels = 2, - single_index_level = 3 + Single_index_level = 3 }; /** -- 2.39.2