From 06ec299ef765df9e3781fd57fd3c703286ccf74b Mon Sep 17 00:00:00 2001 From: Ahmed Gagan <67264609+adgan11@users.noreply.github.com> Date: Thu, 9 Nov 2023 17:02:33 +0530 Subject: [PATCH] fix typo in day 4 --- 04_Day_Conditionals/04_day_conditionals.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04_Day_Conditionals/04_day_conditionals.md b/04_Day_Conditionals/04_day_conditionals.md index 010084499..0d7b0fd78 100644 --- a/04_Day_Conditionals/04_day_conditionals.md +++ b/04_Day_Conditionals/04_day_conditionals.md @@ -297,7 +297,7 @@ isRaining You are 5 years older than me. ``` -1. If a is greater than b return 'a is greater than b' else 'a is less than b'. Try to implement it in to ways +1. If a is greater than b return 'a is greater than b' else 'a is less than b'. Try to implement it in two ways - using if else - ternary operator.