From b6349d55b3cc9345291e22f4e0d994fbed09afc7 Mon Sep 17 00:00:00 2001 From: terakilobyte Date: Fri, 8 May 2015 17:12:16 -0400 Subject: [PATCH] Use exacty wikipedia definition for smallest common multiple --- seed_data/bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed_data/bonfires.json b/seed_data/bonfires.json index c5e6d75798..277f014e94 100644 --- a/seed_data/bonfires.json +++ b/seed_data/bonfires.json @@ -517,7 +517,7 @@ "name": "Smallest Common Multiple", "difficulty": "2.11", "description": [ - "Find the smallest number that evenly divides all numbers in the provided range.", + "Find the smallest number that is evenly divisible by all numbers in the provided range.", "The range will be an array of two numbers that will not necessarily be in numerical order." ], "challengeSeed": "function smallestCommons(arr) {\n return arr;\r\n}\r\n\n\nsmallestCommons([1,5]);",