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