diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index a7b6826..031f5ed 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -21341,7 +21341,7 @@ Use `not_null` for C-style strings that cannot be `nullptr`. ??? Do we * `unique_ptr` // unique ownership: `std::unique_ptr` * `shared_ptr` // shared ownership: `std::shared_ptr` (a counted pointer) * `stack_array` // A stack-allocated array. The number of elements is determined at construction and fixed thereafter. The elements are mutable unless `T` is a `const` type. -* `dyn_array` // A container, nongrowing dynamically allocated array. The number of elements is determined at construction and fixed thereafter. +* `dyn_array` // A container, non-growing dynamically allocated array. The number of elements is determined at construction and fixed thereafter. The elements are mutable unless `T` is a `const` type. Basically a `span` that allocates and owns its elements. ## GSL.assert: Assertions