From 84ef2aa26ed0fec5159532279becbcf19a7975df Mon Sep 17 00:00:00 2001 From: Patrick Venture Date: Sat, 20 Oct 2018 20:14:10 -0700 Subject: cpp-style-and-conventions: fix wrong case in example Class names are UpperCamelCase. Change-Id: Ic7d9432ec8458ef6e54070b0af445a9be10f1c9a Signed-off-by: Patrick Venture --- cpp-style-and-conventions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp-style-and-conventions.md b/cpp-style-and-conventions.md index 95f1a09..51c2bfe 100644 --- a/cpp-style-and-conventions.md +++ b/cpp-style-and-conventions.md @@ -325,12 +325,12 @@ All in alphabetically sorted order. ``` template -class foo +class Foo { using type = std::decay_t; }; -template using foo_t = foo::type; +template using foo_t = Foo::type; ``` #### Variables -- cgit v1.2.1