From 3247dc620e8e0230202317c76efa457b1fd04cde 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). --- 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 a45405019bd..bc7f5d2bf05 100644 --- a/challenges/object-oriented-and-functional-programming.json +++ b/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.",