From 0fd90f4aaf5a50007d5385d77fbbccece9287603 Mon Sep 17 00:00:00 2001 From: benmcmahon100 Date: Sun, 16 Aug 2015 21:06:42 +0100 Subject: [PATCH] Fix #1790 --- 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 7bd8ff8d1b..bf76f7ca77 100644 --- a/seed/challenges/object-oriented-and-functional-programming.json +++ b/seed/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);", "});"