diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index c6f1987c006eab51bd7cca2383f3ec667266ed30..583e4f4958660f900dceb0d868c07dd66b3461b6 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -12866,7 +12866,7 @@ These assertions is currently macros (yuck!) pending standard commission decisio * `narrow` // `narrow(x)` is `static_cast(x)` if `static_cast(x) == x` or it throws `narrowing_error` * `[[implicit]]` // "Marker" to put on single-argument constructors to explicitly make them non-explicit. * `move_owner` // `p = move_owner(q)` means `p = q` but ??? -* `writeonly` // `writeonly` where `T` is a pointer, reference or span; only non-`const` operations on the `T` object +* `writeonly` // `writeonly>` where `prs` is a pointer, reference or span; only non-`const` operations on `T` ## GSL.concept: Concepts