From 43f6b85fbcfd2203af4af540511deb9cc726b977 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20=E2=80=9Cweej=E2=80=9D=20Jones?= Date: Wed, 17 Aug 2016 16:15:00 +0100 Subject: [PATCH] Typos in NL.7 --- CppCoreGuidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 284f2e6..9916a8e 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -16864,11 +16864,11 @@ This is not evil. ##### Example - sqrt double(doube x); // return the square root of x; x must be non-negative + sqrt double(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 - int length_of_string(const char zero_terminated_array of_char[]) // bad: verbose + int length_of_string(const char zero_terminated_array_of_char[]) // bad: verbose int g; // bad: global variable with a cryptic name