Skip to content

Commit 375f814

Browse files
committed
Update descriptions as per PR review comments
1 parent 22b61d6 commit 375f814

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

exercises/etl/canonical-data.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"transform": {
3-
"description": "transforms the input map from a map of value: [ keys ] to a map of key: value for each of the keys",
3+
"description": "transforms the a set of scrabble data previously indexed by the tile score to a set of data indexed by the tile letter",
44
"cases": [
55
{
6-
"description": "transforms one value",
6+
"description": "transforms a single letter",
77
"input": {
88
"1": ["A"]
99
},
@@ -12,7 +12,7 @@
1212
}
1313
},
1414
{
15-
"description": "transforms more values",
15+
"description": "transforms single score with multiple letters",
1616
"input": {
1717
"1": ["A", "E", "I", "O", "U" ]
1818
},
@@ -25,7 +25,7 @@
2525
}
2626
},
2727
{
28-
"description": "transforms more keys",
28+
"description": "transforms multiple scores with multiple letters",
2929
"input": {
3030
"1": ["A", "E"],
3131
"2": ["D", "G"]
@@ -38,7 +38,7 @@
3838
}
3939
},
4040
{
41-
"description": "transforms a full data set",
41+
"description": "transforms the full set of scrabble tiles (multiple scores with differing numbers of letters)",
4242
"input": {
4343
"1": [ "A", "E", "I", "O", "U", "L", "N", "R", "S", "T" ],
4444
"2": [ "D", "G" ],

0 commit comments

Comments
 (0)