diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2023-04-03 22:14:30 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2023-04-03 22:14:30 +0200 |
commit | 8125aae9e2e00ac5683f077d7b0cc889f2b39dba (patch) | |
tree | fb8f299a7d3bf8c07797a65d9c45417d1450ac3e /es | |
parent | 7ad9cf1878e08358284340d8eab7101de53114ba (diff) |
Corregir typo en ejemplo
fixes #3
Diffstat (limited to 'es')
-rw-r--r-- | es/04_funciones.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/es/04_funciones.md b/es/04_funciones.md index b23c457..5b78d9c 100644 --- a/es/04_funciones.md +++ b/es/04_funciones.md @@ -90,7 +90,7 @@ otras funciones. Por ejemplo: ``` python ->>> def filtra_lista(list): +>>> def filtra_lista(lista): ... def mayor_que_4(a): ... return a > 4 ... return list( filter(mayor_que_4, lista) ) |