Skip to content

Commit 5eac136

Browse files
authored
Merge pull request #17 from wotanCode/patch-3
Error en el código de ejemplo
2 parents 61a39ab + be715d3 commit 5eac136

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: exercises/06-lambda-functions/README.es.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ Así es como declararías una función normal
2929
```python
3030
# this function return True if a number is odd.
3131
def is_odd(num):
32-
return (num % 2)! == 0:
32+
return (num % 2) != 0
3333
```

0 commit comments

Comments
 (0)