diff --git a/exercises/README.md b/exercises/README.md index fe2a465..93ca7ea 100644 --- a/exercises/README.md +++ b/exercises/README.md @@ -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; }; ```