From 4b4b4752d4c57af226d6a99f760332a3c8c250eb Mon Sep 17 00:00:00 2001 From: benmcmahon100 Date: Sun, 16 Aug 2015 21:06:42 +0100 Subject: [PATCH] Fix #1790 --- 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 7bd8ff8d1b..bf76f7ca77 100644 --- a/challenges/object-oriented-and-functional-programming.json +++ b/challenges/object-oriented-and-functional-programming.json @@ -227,7 +227,7 @@ "difficulty":0, "description":[ "filter is a useful method that can filter out values that don't match a certain criteria", - "Let's remove all the values less than six", + "Let's remove all the values greater than six", "array = array.filter(function(val) {", "  return(val<4);", "});"