From c70b90d4fbb1634b2e052530f9f72bfc46a91885 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Fri, 23 Aug 2019 09:46:59 +0300 Subject: [PATCH] Resolve #88 --- snippets/is_odd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/is_odd.md b/snippets/is_odd.md index 82f0f1528..a9fded5b7 100644 --- a/snippets/is_odd.md +++ b/snippets/is_odd.md @@ -10,7 +10,7 @@ Returns `True` if the number is odd, `False` if the number is even. ```py def is_odd(num): - return num % 2 == `0` + return num % 2 != ` ``` ```py