From 31427347034003589724d044b2f3a9189a0797e1 Mon Sep 17 00:00:00 2001 From: Jahirul Tusar <41430709+jahirultusar@users.noreply.github.com> Date: Thu, 8 Aug 2024 15:19:26 +0100 Subject: [PATCH] Update spelling mistake line in 17 028_logic.py minor: spelling mistake in line 17. Should be ifs but says its. --- 028_logic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/028_logic.py b/028_logic.py index f7371a76..c5a3d11d 100644 --- a/028_logic.py +++ b/028_logic.py @@ -14,7 +14,7 @@ # The `if` keyword looks at whether the conditional # expression evaluates to True or False to decide whether to -# execute its block, or the else block. +# execute ifs block, or the else block. # We can use this information to combine conditions using a # new kind of operators: logical operators.