Skip to content

Commit 51b8b30

Browse files
authored
Merge pull request #1575 from exercism/scrabble-proper-name
Scrabble is a trademark name.
2 parents dda744d + ccbce72 commit 51b8b30

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

exercises/etl/canonical-data.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"exercise": "etl",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"cases": [
55
{
66
"comments": [
7-
"Transforms a set of legacy scrabble data stored as letters per score",
7+
"Transforms a set of legacy Scrabble data stored as letters per score",
88
"to a set of data stored score per letter.",
99
"Note: The expected input data for these tests should have",
1010
"integer keys (not stringified numbers as shown in the JSON below",
@@ -18,8 +18,8 @@
1818
"description": "single letter",
1919
"property": "transform",
2020
"input": {
21-
"legacy": {
22-
"1": ["A"]
21+
"legacy": {
22+
"1": ["A"]
2323
}
2424
},
2525
"expected": {
@@ -30,7 +30,7 @@
3030
"description": "single score with multiple letters",
3131
"property": "transform",
3232
"input": {
33-
"legacy": {
33+
"legacy": {
3434
"1": ["A", "E", "I", "O", "U"]
3535
}
3636
},
@@ -46,7 +46,7 @@
4646
"description": "multiple scores with multiple letters",
4747
"property": "transform",
4848
"input": {
49-
"legacy": {
49+
"legacy": {
5050
"1": ["A", "E"],
5151
"2": ["D", "G"]
5252
}
@@ -62,7 +62,7 @@
6262
"description": "multiple scores with differing numbers of letters",
6363
"property": "transform",
6464
"input": {
65-
"legacy": {
65+
"legacy": {
6666
"1": ["A", "E", "I", "O", "U", "L", "N", "R", "S", "T"],
6767
"2": ["D", "G"],
6868
"3": ["B", "C", "M", "P"],

exercises/etl/description.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ moaning about how stupid we could possibly be.)
1111

1212
### The goal
1313

14-
We're going to extract some scrabble scores from a legacy system.
14+
We're going to extract some Scrabble scores from a legacy system.
1515

1616
The old system stored a list of letters per score:
1717

@@ -23,7 +23,7 @@ The old system stored a list of letters per score:
2323
- 8 points: "J", "X",
2424
- 10 points: "Q", "Z",
2525

26-
The shiny new scrabble system instead stores the score per letter, which
26+
The shiny new Scrabble system instead stores the score per letter, which
2727
makes it much faster and easier to calculate the score for a word. It
2828
also stores the letters in lower-case regardless of the case of the
2929
input letters:

exercises/scrabble-score/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Given a word, compute the scrabble score for that word.
1+
Given a word, compute the Scrabble score for that word.
22

33
## Letter Values
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
---
2-
blurb: "Given a word, compute the scrabble score for that word."
2+
blurb: "Given a word, compute the Scrabble score for that word."
33
source: "Inspired by the Extreme Startup game"
44
source_url: "https://github.com/rchatley/extreme_startup"

0 commit comments

Comments
 (0)