From ccbce72df5eea5c6b9e6f56a957adcf707eecb14 Mon Sep 17 00:00:00 2001 From: Victor Goff Date: Mon, 26 Aug 2019 09:48:25 -0400 Subject: [PATCH] Scrabble is a trademark name. It should be capitalized. It is also a noun, meaning a "doodle", and a verb, such as what this description could be considered. In our case, we are referring to the trademarked name of the game Scrabble. Signed-off-by: Victor Goff --- exercises/etl/canonical-data.json | 14 +++++++------- exercises/etl/description.md | 4 ++-- exercises/scrabble-score/description.md | 2 +- exercises/scrabble-score/metadata.yml | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/exercises/etl/canonical-data.json b/exercises/etl/canonical-data.json index 66f96b1a60..2bec9a18ba 100644 --- a/exercises/etl/canonical-data.json +++ b/exercises/etl/canonical-data.json @@ -1,10 +1,10 @@ { "exercise": "etl", - "version": "2.0.0", + "version": "2.0.1", "cases": [ { "comments": [ - "Transforms a set of legacy scrabble data stored as letters per score", + "Transforms a set of legacy Scrabble data stored as letters per score", "to a set of data stored score per letter.", "Note: The expected input data for these tests should have", "integer keys (not stringified numbers as shown in the JSON below", @@ -18,8 +18,8 @@ "description": "single letter", "property": "transform", "input": { - "legacy": { - "1": ["A"] + "legacy": { + "1": ["A"] } }, "expected": { @@ -30,7 +30,7 @@ "description": "single score with multiple letters", "property": "transform", "input": { - "legacy": { + "legacy": { "1": ["A", "E", "I", "O", "U"] } }, @@ -46,7 +46,7 @@ "description": "multiple scores with multiple letters", "property": "transform", "input": { - "legacy": { + "legacy": { "1": ["A", "E"], "2": ["D", "G"] } @@ -62,7 +62,7 @@ "description": "multiple scores with differing numbers of letters", "property": "transform", "input": { - "legacy": { + "legacy": { "1": ["A", "E", "I", "O", "U", "L", "N", "R", "S", "T"], "2": ["D", "G"], "3": ["B", "C", "M", "P"], diff --git a/exercises/etl/description.md b/exercises/etl/description.md index d210b9251b..a4a3098b00 100644 --- a/exercises/etl/description.md +++ b/exercises/etl/description.md @@ -11,7 +11,7 @@ moaning about how stupid we could possibly be.) ### The goal -We're going to extract some scrabble scores from a legacy system. +We're going to extract some Scrabble scores from a legacy system. The old system stored a list of letters per score: @@ -23,7 +23,7 @@ The old system stored a list of letters per score: - 8 points: "J", "X", - 10 points: "Q", "Z", -The shiny new scrabble system instead stores the score per letter, which +The shiny new Scrabble system instead stores the score per letter, which makes it much faster and easier to calculate the score for a word. It also stores the letters in lower-case regardless of the case of the input letters: diff --git a/exercises/scrabble-score/description.md b/exercises/scrabble-score/description.md index 394018feef..c3c68a195d 100644 --- a/exercises/scrabble-score/description.md +++ b/exercises/scrabble-score/description.md @@ -1,4 +1,4 @@ -Given a word, compute the scrabble score for that word. +Given a word, compute the Scrabble score for that word. ## Letter Values diff --git a/exercises/scrabble-score/metadata.yml b/exercises/scrabble-score/metadata.yml index d2358ac514..f0b43e6ca3 100644 --- a/exercises/scrabble-score/metadata.yml +++ b/exercises/scrabble-score/metadata.yml @@ -1,4 +1,4 @@ --- -blurb: "Given a word, compute the scrabble score for that word." +blurb: "Given a word, compute the Scrabble score for that word." source: "Inspired by the Extreme Startup game" source_url: "https://github.com/rchatley/extreme_startup"