Skip to content

Commit b6dff02

Browse files
authored
Update config.json (exercism#3642)
corrected author name to see if it changed rep awarded.
1 parent 3187fb4 commit b6dff02

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,56 @@
11
{
22
"introduction": {
3-
"authors": ["BethanyG"]
3+
"authors": ["bethanyg"]
44
},
55
"approaches": [
66
{
77
"uuid": "8ee6ac18-270b-4a62-80e6-5efb09139274",
88
"slug": "functools-reduce",
99
"title": "Functools Reduce",
1010
"blurb": "Use functools.reduce() to form an acronym from text cleaned using str.replace().",
11-
"authors": ["BethanyG"]
11+
"authors": ["bethanyg"]
1212
},
1313
{
1414
"uuid": "d568ea30-b839-46ad-9c9b-73321a274325",
1515
"slug": "generator-expression",
1616
"title": "Generator Expression",
1717
"blurb": "Use a generator expression with str.join() to form an acronym from text cleaned using str.replace().",
18-
"authors": ["BethanyG"]
18+
"authors": ["bethanyg"]
1919
},
2020
{
2121
"uuid": "da53b1bc-35c7-47a7-88d5-56ebb9d3658d",
2222
"slug": "list-comprehension",
2323
"title": "List Comprehension",
2424
"blurb": "Use a list comprehension with str.join() to form an acronym from text cleaned using str.replace().",
25-
"authors": ["BethanyG"]
25+
"authors": ["bethanyg"]
2626
},
2727
{
2828
"uuid": "abd51d7d-3743-448d-b8f1-49f484ae6b30",
2929
"slug": "loop",
3030
"title": "Loop",
3131
"blurb": "Use str.replace() to clean the input string and a loop with string concatenation to form the acronym.",
32-
"authors": ["BethanyG"]
32+
"authors": ["bethanyg"]
3333
},
3434
{
3535
"uuid": "9eee8db9-80f8-4ee4-aaaf-e55b78221283",
3636
"slug": "map-function",
3737
"title": "Map Built-in",
3838
"blurb": "Use the built-in map() function to form an acronym after cleaning the input string with str.replace().",
39-
"authors": ["BethanyG"]
39+
"authors": ["bethanyg"]
4040
},
4141
{
4242
"uuid": "8f4dc8ba-fd1c-4c85-bcc3-8ef9dca34c7f",
4343
"slug": "regex-join",
4444
"title": "Regex join",
4545
"blurb": "Use regex to clean the input string and form the acronym with str.join().",
46-
"authors": ["BethanyG"]
46+
"authors": ["bethanyg"]
4747
},
4848
{
4949
"uuid": "8830be43-44c3-45ab-8311-f588f60dfc5f",
5050
"slug": "regex-sub",
5151
"title": "Regex Sub",
5252
"blurb": "Use re.sub() to clean the input string and create the acronym in one step.",
53-
"authors": ["BethanyG"]
53+
"authors": ["bethanyg"]
5454
}
5555
]
56-
}
56+
}

0 commit comments

Comments
 (0)