Consistent title casing.

This commit is contained in:
Anthony Calandra
2020-02-01 18:03:31 -05:00
parent 6d90199ea9
commit c6734631fc
3 changed files with 6 additions and 6 deletions

View File

@@ -137,7 +137,7 @@ constexpr int factorial(int n) {
factorial(5); // == 120
```
### Variable Templates
### Variable templates
C++14 allows variables to be templated:
```c++