From 4604ede346012bae2c75349452448f5947a58647 Mon Sep 17 00:00:00 2001 From: Maxim Orlov Date: Thu, 29 Jan 2015 00:23:04 +0100 Subject: [PATCH] fix typo Title Case a Sentence --- seed_data/bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed_data/bonfires.json b/seed_data/bonfires.json index 871105fe64..370cb08e1c 100644 --- a/seed_data/bonfires.json +++ b/seed_data/bonfires.json @@ -102,7 +102,7 @@ "Return the provided string with the first letter of each word capitalized.", "For the purpose of this exercise, you should also capitalize connecting words like 'the' and 'of'." ], - "challengeEntryPoint": "titleCase(\"I'm a little tea pot\")", + "challengeEntryPoint": "titleCase(\"I'm a little tea pot\");", "challengeSeed": "function titleCase(str) {\n return str;\r\n}", "tests": [ "expect(titleCase(\"I'm a little tea pot\")).to.be.a('String');",