From 1d23b28da047ceb78750d3884a36c313ce3e1c2a 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' --- 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 f00086db9c..9527328a4f 100644 --- a/seed/challenges/object-oriented-and-functional-programming.json +++ b/seed/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;", "});"