From aeba8b06fa285df04d67352c9390b1d5731cf463 Mon Sep 17 00:00:00 2001 From: Vanshika Date: Tue, 28 Oct 2025 19:01:18 +0530 Subject: [PATCH] Fix typo in True-or-False-App.md fixed minor typos and improved readability in TrueOrFalse project details --- Projects/1-Beginner/True-or-False-App.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Projects/1-Beginner/True-or-False-App.md b/Projects/1-Beginner/True-or-False-App.md index 93d8d7142..efb6d945c 100644 --- a/Projects/1-Beginner/True-or-False-App.md +++ b/Projects/1-Beginner/True-or-False-App.md @@ -4,7 +4,7 @@ Something every developer needs to clearly understand is the result of conditional expressions like `x === y`. This is a bit more involved for -Javascript developers who must also understand the concept of _truthiness_. +JavaScript developers who must also understand the concept of _truthiness_. TrueOrFalse helps by displaying the result when a conditional operator is applied to two values. Users can use this to test their knowledge and @@ -19,7 +19,7 @@ the `eval()` function to generate the result of the conditional. - [ ] User can enter two strings to be compared - [ ] User can enter a valid Javascript conditional operator to be used to compare the two strings - [ ] User can see the result of the conditional as TRUE or FALSE -- [ ] User can see a warning if the input strings or conditional operator that has been entered is not valid +- [ ] User can see a warning if the input strings or conditional operator entered is not valid ## Bonus features