From 53cdc7687388840c04470fb35e84e83b27175ae5 Mon Sep 17 00:00:00 2001 From: Alexey Zholtikov Date: Tue, 18 Jun 2024 17:55:28 +0300 Subject: [PATCH] Updated one comment --- include/zh_vector.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/include/zh_vector.h b/include/zh_vector.h index 7c20a70..d773c5d 100644 --- a/include/zh_vector.h +++ b/include/zh_vector.h @@ -11,11 +11,7 @@ extern "C" { #endif - /** - * @brief Main structure of vector data. - * - */ - typedef struct + typedef struct // Main structure of vector data. { void **items; // Array of pointers of vector items. uint16_t capacity; // Maximum capacity of the vector. @note Used to control the size of allocated memory for array of pointers of vector items. Usually equal to the current number of items in the vector. Automatically changes when items are added or deleted.