From 41142e3ab52851fb22e698c29abae161f359763b Mon Sep 17 00:00:00 2001 From: Ebubechim Okpo Date: Sun, 8 May 2016 12:17:32 -0400 Subject: [PATCH] Fix typo in OOP challenge --- .../object-oriented-and-functional-programming.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/01-front-end-development-certification/object-oriented-and-functional-programming.json b/seed/challenges/01-front-end-development-certification/object-oriented-and-functional-programming.json index 8fd61d9eb8..11a76f7d62 100644 --- a/seed/challenges/01-front-end-development-certification/object-oriented-and-functional-programming.json +++ b/seed/challenges/01-front-end-development-certification/object-oriented-and-functional-programming.json @@ -567,7 +567,7 @@ "description": [ "You can use the split method to split a string into an array.", "split uses the argument you pass in as a delimiter to determine which points the string should be split at.", - "Here is an example of split being used to split an array at every s character:", + "Here is an example of split being used to split a string at every s character:", "var array = string.split('s');", "Use split to create an array of words from string and assign it to array." ],