From edb26effd4ed104c61ddfe9d1e03ce1a3325834c Mon Sep 17 00:00:00 2001 From: Aniruddh Agarwal Date: Tue, 1 Sep 2015 08:35:07 +0800 Subject: [PATCH] fixed issue #2940: replaced and with an --- seed/challenges/object-oriented-and-functional-programming.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/object-oriented-and-functional-programming.json b/seed/challenges/object-oriented-and-functional-programming.json index c49dd082d8..77ec8e432d 100644 --- a/seed/challenges/object-oriented-and-functional-programming.json +++ b/seed/challenges/object-oriented-and-functional-programming.json @@ -205,7 +205,7 @@ "title":"Condense arrays with .reduce", "difficulty":0, "description":[ - "Reduce can be useful for condensing and array or numbers into one value.", + "Reduce can be useful for condensing an array or numbers into one value.", "var singleVal = array.reduce(function(previousVal, currentVal){", "  return(previousVal+currentVal);", "});"