Exercises: Fix firstname, lastname casing for consistency

This commit is contained in:
Alex Hirsch 2020-11-06 02:22:06 +01:00
parent 46581aee7a
commit b6222cc607

View File

@ -110,8 +110,8 @@ You are given the following definition of a person:
```cpp
struct Person {
std::string firstName;
std::string lastName;
std::string firstname;
std::string lastname;
int age;
};
```