diff --git a/exercises/etl/canonical-data.json b/exercises/etl/canonical-data.json index 66f96b1a60..b497daca75 100644 --- a/exercises/etl/canonical-data.json +++ b/exercises/etl/canonical-data.json @@ -4,7 +4,7 @@ "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", 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"