fix typo Title Case a Sentence

This commit is contained in:
Maxim Orlov
2015-01-29 00:23:04 +01:00
parent 0739934c50
commit 4604ede346

View File

@@ -102,7 +102,7 @@
"Return the provided string with the first letter of each word capitalized.", "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'." "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}", "challengeSeed": "function titleCase(str) {\n return str;\r\n}",
"tests": [ "tests": [
"expect(titleCase(\"I'm a little tea pot\")).to.be.a('String');", "expect(titleCase(\"I'm a little tea pot\")).to.be.a('String');",