From f8322ce2706d2a0681ee57454495791238d185a1 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Fri, 23 Aug 2019 09:47:35 +0300 Subject: [PATCH] Fix typo --- 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 a9fded5b7..89a564d9f 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 != ` + return num % 2 != 0 ``` ```py