From 537573932c6a401fc7af5c482fa8fde2f4d9d0a5 Mon Sep 17 00:00:00 2001 From: Victorino Machava Date: Fri, 13 Nov 2015 15:19:24 +0200 Subject: [PATCH] Update object-oriented-and-functional-programming.json Changing the Waypoint title from "Concatenate Strings with concat" to "Concatenate Arrays with concat". Because that is what the Waypoint is actually about (concatenating Arrays). --- 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 a45405019b..bc7f5d2bf0 100644 --- a/seed/challenges/object-oriented-and-functional-programming.json +++ b/seed/challenges/object-oriented-and-functional-programming.json @@ -410,7 +410,7 @@ }, { "id": "cf1111c1c16feddfaeb3bdef", - "title": "Concatenate Strings with .concat", + "title": "Concatenate Arrays with .concat", "description": [ "concat can be used to merge the contents of two arrays into one.", "concat takes an array as an argument and returns a new array with the elements of this array concatenated onto the end.",