diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 4b2fb57..c6b2712 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -17801,7 +17801,7 @@ This is not evil. ##### Example - sqrt double(double x); // return the square root of x; x must be non-negative + double sqrt(double x); // return the square root of x; x must be non-negative int length(const char* p); // return the number of characters in a zero-terminated C-style string