From bdfa2a565685997d109ae73562f6241157159543 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 --- challenges/object-oriented-and-functional-programming.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/object-oriented-and-functional-programming.json b/challenges/object-oriented-and-functional-programming.json index c49dd082d8..77ec8e432d 100644 --- a/challenges/object-oriented-and-functional-programming.json +++ b/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);", "});"