diff --git a/src/min_array.h b/src/min_array.h index b05e2af..d437781 100644 --- a/src/min_array.h +++ b/src/min_array.h @@ -1,8 +1,8 @@ -/** X-macro for a minimal dynamic array: `MIN_ARRAY(name, type)`, where `name` - is an identifier prefix that satisfies `C` naming conventions when mangled and - `type` is defined tag-type associated therewith. When expanding the array, - resizing may be necessary and incurs amortised cost; any pointers to this - memory may become stale. */ +/** Macro for a type-specific minimal dynamic array: `MIN_ARRAY(name, type)`, + where `name` is an identifier prefix that satisfies `C` naming conventions + when mangled and `type` is defined tag-type associated therewith. When + expanding the array, resizing may be necessary and incurs amortised cost; any + pointers to this memory may become stale. */ #include /* size_t realloc free */ #include /* memmove strcmp memcpy */