From 2ee5596be23658aac71f0272391253a704deec08 Mon Sep 17 00:00:00 2001 From: Elena Parovyshnaia Date: Mon, 9 Dec 2019 18:21:31 +0300 Subject: [PATCH] #1623 `grade-school` canonical data does not correspond to the exercise description (#1624) - case description is altered according to the discussion results - patch version of the canonical-data is updated --- exercises/grade-school/canonical-data.json | 2 +- exercises/grade-school/description.md | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) 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?)