From 39f7507e440de5771ffc84ea305c706abba93a8b Mon Sep 17 00:00:00 2001 From: Rob Phoenix Date: Thu, 22 Dec 2016 11:57:48 +0000 Subject: [PATCH] sum-of-multiples: update description description updated to mention limits, https://github.com/exercism/xgo/issues/340#issuecomment-238150900 --- exercises/sum-of-multiples/description.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/sum-of-multiples/description.md b/exercises/sum-of-multiples/description.md index 735cd579c9..3499c4c937 100644 --- a/exercises/sum-of-multiples/description.md +++ b/exercises/sum-of-multiples/description.md @@ -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 +of a given set of numbers, up to but not including that number.