Fixes wrong order of type and function name in naming scheme

This commit is contained in:
Krishna Kumar
2016-09-27 15:43:53 -07:00
parent b7306cadb0
commit 40f892ade3

View File

@@ -16876,7 +16876,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