From 1652fb6d56918d969b9c7b21e51fdce99ed77bbd Mon Sep 17 00:00:00 2001 From: RicoAntonioFelix Date: Sun, 27 Sep 2015 11:28:54 -0400 Subject: [PATCH] Corrected typographical error... --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index ec31703..36d8eb8 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -11384,7 +11384,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.