From b6222cc607ced950cffdd665dfab99335408cc11 Mon Sep 17 00:00:00 2001 From: Alex Hirsch Date: Fri, 6 Nov 2020 02:22:06 +0100 Subject: [PATCH] Exercises: Fix firstname, lastname casing for consistency --- exercises/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }; ```