From a938d8906e71eb3bab236b7c8077f944e15a6abf Mon Sep 17 00:00:00 2001
From: Victor Goff <keeperotphones@gmail.com>
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 <keeperotphones@gmail.com>
---
 exercises/etl/canonical-data.json       | 4 ++--
 exercises/etl/description.md            | 4 ++--
 exercises/scrabble-score/description.md | 2 +-
 exercises/scrabble-score/metadata.yml   | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

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