From b21b125d4213e6c294b83be89534c109a0ade13b Mon Sep 17 00:00:00 2001 From: Andrew Pardoe Date: Mon, 16 Apr 2018 11:15:57 -0700 Subject: [PATCH] Capitalization error --- CppCoreGuidelines.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 634a2ed..df0450b 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1,6 +1,6 @@ # C++ Core Guidelines -March 26, 2018 +April 16, 2018 Editors: @@ -17534,8 +17534,8 @@ Templating a class hierarchy that has many functions, especially many virtual fu // ... }; - vector vi; - vector vs; + Vector vi; + Vector vs; It is probably a dumb idea to define a `sort` as a member function of a container, but it is not unheard of and it makes a good example of what not to do.