Skip to content

Commit dc314b6

Browse files
authored
Sync metadata with problem-specifications (#1114)
A number of practice exercises have minor changes to the metadata. Mostly it's just punctuation in the blurbs, though there are a few other minor changes such as tweaks to source URLs or updating wording for clarity. Since these should all be straight forward to review, I've taken the liberty of updating them all in a single PR.
1 parent f65f903 commit dc314b6

File tree

21 files changed

+23
-24
lines changed

21 files changed

+23
-24
lines changed

exercises/practice/acronym/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Convert a long phrase to its acronym",
2+
"blurb": "Convert a long phrase to its acronym.",
33
"authors": [
44
"lpalma"
55
],

exercises/practice/armstrong-numbers/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Determine if a number is an Armstrong number",
2+
"blurb": "Determine if a number is an Armstrong number.",
33
"authors": [],
44
"contributors": [
55
"iHiD",

exercises/practice/binary/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Convert a binary number, represented as a string (e.g. '101010'), to its decimal equivalent using first principles",
2+
"blurb": "Convert a binary number, represented as a string (e.g. '101010'), to its decimal equivalent using first principles.",
33
"authors": [
44
"etrepum"
55
],

exercises/practice/bowling/.meta/config.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Score a bowling game",
2+
"blurb": "Score a bowling game.",
33
"authors": [
44
"abo64"
55
],
@@ -25,6 +25,6 @@
2525
".meta/examples/success-standard/src/Bowling.hs"
2626
]
2727
},
28-
"source": "The Bowling Game Kata at but UncleBob",
28+
"source": "The Bowling Game Kata from UncleBob",
2929
"source_url": "http://butunclebob.com/ArticleS.UncleBob.TheBowlingGameKata"
3030
}

exercises/practice/change/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Correctly determine change to be given using the least number of coins",
2+
"blurb": "Correctly determine change to be given using the least number of coins.",
33
"authors": [
44
"abo64"
55
],

exercises/practice/collatz-conjecture/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Calculate the number of steps to reach 1 using the Collatz conjecture",
2+
"blurb": "Calculate the number of steps to reach 1 using the Collatz conjecture.",
33
"authors": [],
44
"contributors": [
55
"guygastineau",

exercises/practice/connect/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Compute the result for a game of Hex / Polygon",
2+
"blurb": "Compute the result for a game of Hex / Polygon.",
33
"authors": [
44
"pminten"
55
],

exercises/practice/dnd-character/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Randomly generate Dungeons & Dragons characters",
2+
"blurb": "Randomly generate Dungeons & Dragons characters.",
33
"authors": [
44
"sshine"
55
],

exercises/practice/food-chain/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Generate the lyrics of the song 'I Know an Old Lady Who Swallowed a Fly'",
2+
"blurb": "Generate the lyrics of the song 'I Know an Old Lady Who Swallowed a Fly'.",
33
"authors": [
44
"sjakobi"
55
],

exercises/practice/forth/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Implement an evaluator for a very simple subset of Forth",
2+
"blurb": "Implement an evaluator for a very simple subset of Forth.",
33
"authors": [
44
"etrepum"
55
],

exercises/practice/grade-school/.meta/config.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Given students' names along with the grade that they are in, create a roster for the school",
2+
"blurb": "Given students' names along with the grade that they are in, create a roster for the school.",
33
"authors": [
44
"etrepum"
55
],
@@ -27,6 +27,5 @@
2727
".meta/examples/success-standard/src/School.hs"
2828
]
2929
},
30-
"source": "A pairing session with Phil Battos at gSchool",
31-
"source_url": "http://gschool.it"
30+
"source": "A pairing session with Phil Battos at gSchool"
3231
}

exercises/practice/hello-world/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "The classical introductory exercise. Just say \"Hello, World!\"",
2+
"blurb": "The classical introductory exercise. Just say \"Hello, World!\".",
33
"authors": [
44
"ErikSchierboom"
55
],

exercises/practice/linked-list/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Implement a doubly linked list",
2+
"blurb": "Implement a doubly linked list.",
33
"authors": [
44
"etrepum"
55
],

exercises/practice/list-ops/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Implement basic list operations",
2+
"blurb": "Implement basic list operations.",
33
"authors": [
44
"etrepum"
55
],

exercises/practice/minesweeper/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Add the numbers to a minesweeper board",
2+
"blurb": "Add the numbers to a minesweeper board.",
33
"authors": [
44
"etrepum"
55
],

exercises/practice/pig-latin/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Implement a program that translates from English to Pig Latin",
2+
"blurb": "Implement a program that translates from English to Pig Latin.",
33
"authors": [
44
"etrepum"
55
],

exercises/practice/pov/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Reparent a graph on a selected node",
2+
"blurb": "Reparent a graph on a selected node.",
33
"authors": [
44
"alexkalderimis"
55
],

exercises/practice/simple-cipher/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Implement a simple shift cipher like Caesar and a more secure substitution cipher",
2+
"blurb": "Implement a simple shift cipher like Caesar and a more secure substitution cipher.",
33
"authors": [
44
"etrepum"
55
],

exercises/practice/simple-linked-list/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Write a simple linked list implementation that uses Elements and a List",
2+
"blurb": "Write a simple linked list implementation that uses Elements and a List.",
33
"authors": [
44
"etrepum"
55
],

exercises/practice/twelve-days/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Output the lyrics to 'The Twelve Days of Christmas'",
2+
"blurb": "Output the lyrics to 'The Twelve Days of Christmas'.",
33
"authors": [
44
"tuxagon"
55
],

exercises/practice/yacht/.meta/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"blurb": "Score a single throw of dice in the game Yacht",
2+
"blurb": "Score a single throw of dice in the game Yacht.",
33
"authors": [
44
"guygastineau"
55
],

0 commit comments

Comments
 (0)