From 9f5fa4240855c4a45f3a54d11a72091d2ca3c9da Mon Sep 17 00:00:00 2001 From: Tooba Jamal <52610124+ToobaJamal@users.noreply.github.com> Date: Sun, 19 Feb 2023 21:22:45 +0500 Subject: [PATCH] Fix typo --- 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 0100844..0d7b0fd 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.