From f98ee210e0697a912796428961cee837c25fc84c Mon Sep 17 00:00:00 2001 From: samanyu <70210929+Sama-004@users.noreply.github.com> Date: Wed, 28 Jun 2023 17:34:00 +0530 Subject: [PATCH] Made the file name sentence more readable Made changes according to the review, made the file name more readable and some minor grammatical changes. --- 03_reverseString/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03_reverseString/README.md b/03_reverseString/README.md index fe1fac7..036592f 100644 --- a/03_reverseString/README.md +++ b/03_reverseString/README.md @@ -6,7 +6,7 @@ Pretty simple, write a function called `reverseString` that returns its input, r reverseString('hello there') // returns 'ereht olleh' ``` -You will notice in this exercise that there are multiple tests (see in file reverseString.spec.js). Only the first test is currently enabled. So after making sure that this first one passes, enable the others one by one by deleting the .skip from the test.skip() function. +You will notice in this exercise that there are multiple tests (in the file `reverseString.spec.js`). Currently, only the first test is enabled. After ensuring that the first test passes, enable the remaining tests one by one by removing the `.skip` from the `test.skip()` function. ## Hints