cpp-style-and-conventions: fix wrong case in example
Class names are UpperCamelCase.
Change-Id: Ic7d9432ec8458ef6e54070b0af445a9be10f1c9a
Signed-off-by: Patrick Venture <venture@google.com>
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 @@
```
template <typename T>
-class foo
+class Foo
{
using type = std::decay_t<T>;
};
-template <typename T> using foo_t = foo<T>::type;
+template <typename T> using foo_t = Foo<T>::type;
```
#### Variables