From f6a87ef8583701ad97f879af858cfcb520875e8b Mon Sep 17 00:00:00 2001 From: Daniel Robinson Date: Thu, 8 Oct 2015 19:18:53 -0400 Subject: [PATCH] Fix typo 'array or numbers' to 'array of numbers' --- 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 f00086db9c..9527328a4f 100644 --- a/challenges/object-oriented-and-functional-programming.json +++ b/challenges/object-oriented-and-functional-programming.json @@ -206,7 +206,7 @@ "title":"Condense arrays with .reduce", "difficulty":0, "description":[ - "Reduce can be useful for condensing an array or numbers into one value.", + "Reduce can be useful for condensing an array of numbers into one value.", "var singleVal = array.reduce(function(previousVal, currentVal){", "  return previousVal+currentVal;", "});"