From 6ec37d91d203ee84947bd184ce7e3300f0c4bdfb Mon Sep 17 00:00:00 2001 From: dipkumarexperiment08-rgb Date: Sat, 12 Sep 2026 23:04:59 +0530 Subject: [PATCH 1/2] Fix grammar in Hello World README Corrected minor grammatical errors and improved clarity in the README. --- .../data_types_and_conditionals/01_helloWorld/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/foundations/data_types_and_conditionals/01_helloWorld/README.md b/foundations/data_types_and_conditionals/01_helloWorld/README.md index 21e84727d18..e0fc583a620 100644 --- a/foundations/data_types_and_conditionals/01_helloWorld/README.md +++ b/foundations/data_types_and_conditionals/01_helloWorld/README.md @@ -23,7 +23,7 @@ describe('Hello World', function() { At the very top of the file we use `require()` to import the code from the javascript file (`helloWorld.js`) so that we can test it. -The next block (`describe()`) is the body of the test. Basically, all it's doing is running your code and testing to see if the output is correct. The `test()` function describes what should be happening in plain english and then includes the `expect()` function. For this simple example it should be pretty simple to read. +The next block (`describe()`) is the body of the test. Basically, all it's doing is running your code and testing to see if the output is correct. The `test()` function describes what should be happening in plain English and then includes the `expect()` function. For this simple example it should be pretty simple to read. For now you do not need to worry about how to write tests, but you should try to get comfortable enough with the syntax to figure out what the tests are asking you to do. Go ahead and run the tests by entering `npm test helloWorld.spec.js` in the terminal and watch it fail. The output from that command should tell you exactly what went wrong with your code. In this case, running the `helloWorld()` function should return the phrase 'Hello, World!' but instead it returns an empty string... @@ -53,4 +53,4 @@ const helloWorld = function() { module.exports = helloWorld; ``` -For the most part we've set up these tests in such a way that you only have to update or write the code being tested. You should not have to worry about importing or exporting anything at this stage.. so just work around that bit of the code and write what it takes to make them pass! +For the most part we've set up these tests in such a way that you only have to update or write the code being tested. You should not have to worry about importing or exporting anything at this stage. So just work around that bit of the code and write what it takes to make them pass! From f655adf29dba24d2ad48be5038736ea11417495b Mon Sep 17 00:00:00 2001 From: dipkumarexperiment08-rgb Date: Mon, 14 Sep 2026 18:21:42 +0530 Subject: [PATCH 2/2] Fix punctuation in Hello World README --- foundations/data_types_and_conditionals/01_helloWorld/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/foundations/data_types_and_conditionals/01_helloWorld/README.md b/foundations/data_types_and_conditionals/01_helloWorld/README.md index e0fc583a620..a9ab8dedbbb 100644 --- a/foundations/data_types_and_conditionals/01_helloWorld/README.md +++ b/foundations/data_types_and_conditionals/01_helloWorld/README.md @@ -53,4 +53,4 @@ const helloWorld = function() { module.exports = helloWorld; ``` -For the most part we've set up these tests in such a way that you only have to update or write the code being tested. You should not have to worry about importing or exporting anything at this stage. So just work around that bit of the code and write what it takes to make them pass! +For the most part we've set up these tests in such a way that you only have to update or write the code being tested. You should not have to worry about importing or exporting anything at this stage, So just work around that bit of the code and write what it takes to make them pass!