Merge pull request #57 from Maximization/patch-1

fix typo Title Case a Sentence
This commit is contained in:
Nathan
2015-01-28 18:24:25 -05:00

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');",