diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 27f8e3a..948e97c 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1312,7 +1312,7 @@ That is, its value must be `delete`d or transferred to another owner, as is done **Example**: - int length(const char* p); // it is not clear whether strlen(nullptr) is valid + int length(const char* p); // it is not clear whether length(nullptr) is valid length(nullptr); // OK?