summaryrefslogtreecommitdiff
path: root/es/04_funciones.md
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2023-04-03 22:14:30 +0200
committerEkaitz Zarraga <ekaitz@elenq.tech>2023-04-03 22:14:30 +0200
commit8125aae9e2e00ac5683f077d7b0cc889f2b39dba (patch)
treefb8f299a7d3bf8c07797a65d9c45417d1450ac3e /es/04_funciones.md
parent7ad9cf1878e08358284340d8eab7101de53114ba (diff)
Corregir typo en ejemplo
fixes #3
Diffstat (limited to 'es/04_funciones.md')
-rw-r--r--es/04_funciones.md2
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) )