Merge pull request #100147 from esainane/vector-victor

Remove apparent contradiction in vector.h header
This commit is contained in:
Thaddeus Crews 2024-12-10 14:15:52 -06:00
commit d108d4f29e
No known key found for this signature in database
GPG Key ID: 62181B86FE9E5D84

View File

@ -33,7 +33,10 @@
/**
* @class Vector
* Vector container. Regular Vector Container. Use with care and for smaller arrays when possible. Use Vector for large arrays.
* Vector container. Simple copy-on-write container.
*
* LocalVector is an alternative available for internal use when COW is not
* required.
*/
#include "core/error/error_macros.h"