From f39fca44723971e4b0091d9f0a7b45964ef091b2 Mon Sep 17 00:00:00 2001 From: Braden Whited Date: Thu, 8 Oct 2015 17:47:06 -0400 Subject: [PATCH] Lesson 31 - Javascript Generate random whole numbers within a range comment error #1947 Comment needed changed to be more concise. See #1947 --- seed/challenges/basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/basic-javascript.json b/seed/challenges/basic-javascript.json index 68eab0176c6..8d0cd75ef57 100644 --- a/seed/challenges/basic-javascript.json +++ b/seed/challenges/basic-javascript.json @@ -939,7 +939,7 @@ "var min = 0;", "var max = 9;", "function myFunction() {", - " // Make myFunction return a random number between zero and nine instead of a decimal", + " // Make myFunction return a random number between min and max values instead of a decimal", " // Only change code below this line.", "", " return Math.random();",