diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 3ea6a99..0e6e378 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -11383,7 +11383,7 @@ A `char*` that points to something that is not a C-style string (e.g., a pointer There is no really good way to say "pointer to a single `char` (`string_view{p, 1}` can do that, and `T*` where `T` is a `char` in a template that has not been specialized for C-style strings). * `zstring` // a `char*` supposed to be a C-style string; that is, a zero-terminated sequence of `char` or `null_ptr` -* `czstring` // a `const char*` supposed to be a C-style string; that is, a zero-terminated sequence of `const` `char` ort `null_ptr` +* `czstring` // a `const char*` supposed to be a C-style string; that is, a zero-terminated sequence of `const` `char` or `null_ptr` Logically, those last two aliases are not needed, but we are not always logical, and they make the distinction between a pointer to one `char` and a pointer to a C-style string explicit. @@ -11489,7 +11489,7 @@ More specific and detailed rules are easier to enforce. **Reason**: Compilers do not read comments. Comments are less precise than code. -Comments are not updates as consistently as code. +Comments are not updated as consistently as code. **Example, bad**: