Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions exercises/sum-of-multiples/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ multiples of either 3 or 5, we get 3, 5, 6 and 9, 10, 12, 15, and 18.

The sum of these multiples is 78.

Write a program that can find the sum of the multiples of a given set of
numbers.
Write a program that, given a number, can find the sum of the multiples
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This same line is in https://github.com/exercism/x-common/blob/master/exercises/sum-of-multiples/metadata.yml#L2 - and since the blurb gets prepended to the README (I discuss at #469 (comment)), that means this line will sandwich the README.

That is still better than the current situation where the README has two contradictory lines. There is also talk of NOT prepending the blurb.

One alternative could be to remove this line completely, leaving the prepend to do the explaining. Or we could leave it. Someone may eventually request to remove the redundancy, as happened in #386

of a given set of numbers, up to but not including that number.