From 7f872a9d50f3a581e0a7dcfd1819d37c4fed0507 Mon Sep 17 00:00:00 2001 From: Krishna Kumar Date: Tue, 27 Sep 2016 15:43:04 -0700 Subject: [PATCH] Fixes wrong order of type and function name in naming scheme --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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