diff --git a/exercises/grade-school/canonical-data.json b/exercises/grade-school/canonical-data.json index 6c0544abf5..2736ba6631 100644 --- a/exercises/grade-school/canonical-data.json +++ b/exercises/grade-school/canonical-data.json @@ -1,6 +1,6 @@ { "exercise": "grade-school", - "version": "1.0.0", + "version": "1.0.1", "comments": [ "Given students' names along with the grade that they are in, ", "create a roster for the school." diff --git a/exercises/grade-school/description.md b/exercises/grade-school/description.md index 497eadb154..09587d61b6 100644 --- a/exercises/grade-school/description.md +++ b/exercises/grade-school/description.md @@ -13,9 +13,12 @@ In the end, you should be able to: as 1, 2, 3, etc., and students within a grade should be sorted alphabetically by name. - "Who all is enrolled in school right now?" - - "Grade 1: Anna, Barb, and Charlie. Grade 2: Alex, Peter, and Zoe. - Grade 3…" - + - "Let me think. We have + Anna, Barb, and Charlie in grade 1, + Alex, Peter, and Zoe in grade 2 + and Jim in grade 5. + So the answer is: Anna, Barb, Charlie, Alex, Peter, Zoe and Jim" + Note that all our students only have one name. (It's a small town, what do you want?)