From 36e36b5278a194fb42aaa3b3892cc714d5652aba Mon Sep 17 00:00:00 2001 From: HiddenOgre28 <72028038+HiddenOgre28@users.noreply.github.com> Date: Thu, 25 Nov 2021 09:19:17 -0300 Subject: [PATCH] Fixed a typo in line 41 Corrected the word "this" so it starts with an upper case "T". --- 01_helloWorld/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_helloWorld/README.md b/01_helloWorld/README.md index 17f7110..d4b267e 100644 --- a/01_helloWorld/README.md +++ b/01_helloWorld/README.md @@ -38,7 +38,7 @@ Go ahead and see if you can make the test pass by editing the return value of th Just to make sure, in case you're confused at this point, the test is telling you that running the function `helloWorld` should return the phrase `Hello, World!`. Punctuation and capitalization definitely matter here, so double check that if the test still isn't passing. -this is what the final function should look like: +This is what the final function should look like: ```javascript const helloWorld = function() { return 'Hello, World!'