Skip to content

Commit 6b58747

Browse files
Update CppCoreGuidelines.md
1 parent 21953e5 commit 6b58747

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CppCoreGuidelines.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21341,7 +21341,7 @@ Use `not_null<zstring>` for C-style strings that cannot be `nullptr`. ??? Do we
2134121341
* `unique_ptr<T>` // unique ownership: `std::unique_ptr<T>`
2134221342
* `shared_ptr<T>` // shared ownership: `std::shared_ptr<T>` (a counted pointer)
2134321343
* `stack_array<T>` // 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.
21344-
* `dyn_array<T>` // A container, nongrowing dynamically allocated array. The number of elements is determined at construction and fixed thereafter.
21344+
* `dyn_array<T>` // A container, non-growing dynamically allocated array. The number of elements is determined at construction and fixed thereafter.
2134521345
The elements are mutable unless `T` is a `const` type. Basically a `span` that allocates and owns its elements.
2134621346

2134721347
## <a name="SS-assertions"></a>GSL.assert: Assertions

0 commit comments

Comments
 (0)